diff --git a/Content.Client/_Goobstation/Research/UI/FancyResearchConsoleBoundUserInterface.cs b/Content.Client/_Goobstation/Research/UI/FancyResearchConsoleBoundUserInterface.cs new file mode 100644 index 000000000000..3aa654074ae2 --- /dev/null +++ b/Content.Client/_Goobstation/Research/UI/FancyResearchConsoleBoundUserInterface.cs @@ -0,0 +1,71 @@ +using System.Linq; +using Content.Shared.Research.Components; +using Content.Shared.Research.Prototypes; +using JetBrains.Annotations; +using Robust.Client.UserInterface; +using Robust.Shared.Prototypes; + +namespace Content.Client._Goobstation.Research.UI; + +[UsedImplicitly] +public sealed class FancyResearchConsoleBoundUserInterface : BoundUserInterface +{ + [ViewVariables] + private FancyResearchConsoleMenu? _consoleMenu; // Goobstation R&D Console rework - ResearchConsoleMenu -> FancyResearchConsoleMenu + + public FancyResearchConsoleBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) + { + } + + protected override void Open() + { + base.Open(); + + var owner = Owner; + + _consoleMenu = this.CreateWindow(); // Goobstation R&D Console rework - ResearchConsoleMenu -> FancyResearchConsoleMenu + _consoleMenu.SetEntity(owner); + _consoleMenu.OnClose += () => _consoleMenu = null; + + _consoleMenu.OnTechnologyCardPressed += id => + { + SendMessage(new ConsoleUnlockTechnologyMessage(id)); + }; + + _consoleMenu.OnServerButtonPressed += () => + { + SendMessage(new ConsoleServerSelectionMessage()); + }; + } + + public override void OnProtoReload(PrototypesReloadedEventArgs args) + { + base.OnProtoReload(args); + + if (!args.WasModified()) + return; + + if (State is not ResearchConsoleBoundInterfaceState rState) + return; + + _consoleMenu?.UpdatePanels(rState.Researches); + _consoleMenu?.UpdateInformationPanel(rState.Points); + } + + protected override void UpdateState(BoundUserInterfaceState state) + { + base.UpdateState(state); + + if (state is not ResearchConsoleBoundInterfaceState castState) + return; + + // Goobstation checks added + // Thats for avoiding refresh spam when only points are updated + if (_consoleMenu == null) + return; + if (!_consoleMenu.List.SequenceEqual(castState.Researches)) + _consoleMenu.UpdatePanels(castState.Researches); + if (_consoleMenu.Points != castState.Points) + _consoleMenu.UpdateInformationPanel(castState.Points); + } +} diff --git a/Content.Client/_NF/Research/UI/FancyResearchConsoleItem.xaml b/Content.Client/_Goobstation/Research/UI/FancyResearchConsoleItem.xaml similarity index 51% rename from Content.Client/_NF/Research/UI/FancyResearchConsoleItem.xaml rename to Content.Client/_Goobstation/Research/UI/FancyResearchConsoleItem.xaml index fa6fb244f2ac..d47e2ee14e39 100644 --- a/Content.Client/_NF/Research/UI/FancyResearchConsoleItem.xaml +++ b/Content.Client/_Goobstation/Research/UI/FancyResearchConsoleItem.xaml @@ -1,22 +1,22 @@ - + HorizontalExpand="False"> + - + - + diff --git a/Content.Client/_Goobstation/Research/UI/FancyResearchConsoleItem.xaml.cs b/Content.Client/_Goobstation/Research/UI/FancyResearchConsoleItem.xaml.cs new file mode 100644 index 000000000000..5ee56cdd037f --- /dev/null +++ b/Content.Client/_Goobstation/Research/UI/FancyResearchConsoleItem.xaml.cs @@ -0,0 +1,154 @@ +using Content.Shared._Goobstation.Research; +using Content.Shared.Research.Prototypes; +using Robust.Client.AutoGenerated; +using Robust.Client.GameObjects; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Prototypes; + +namespace Content.Client._Goobstation.Research.UI; + +[GenerateTypedNameReferences] +public sealed partial class FancyResearchConsoleItem : LayoutContainer +{ + [Dependency] private readonly IPrototypeManager _prototype = default!; + + // Public fields + public TechnologyPrototype Prototype; + public Action? SelectAction; + public ResearchAvailability Availability; + + // Some visuals + public static readonly Color DefaultColor = Color.FromHex("#2e2e2e"); + public static readonly Color DefaultBorderColor = Color.FromHex("#4972A1"); + public static readonly Color DefaultHoveredColor = Color.FromHex("#4972A1"); + + public Color BackgroundColor = DefaultColor; + public Color BorderColor = DefaultBorderColor; + public Color HoveredColor = DefaultHoveredColor; + public Color SelectedColor = DefaultHoveredColor; + + // Selection state + private bool _isSelected = false; + public bool IsSelected + { + get => _isSelected; + set + { + if (_isSelected == value) + return; + _isSelected = value; + UpdateColor(); + } + } + + public FancyResearchConsoleItem(TechnologyPrototype proto, SpriteSystem sprite, ResearchAvailability availability) + { + RobustXamlLoader.Load(this); + IoCManager.InjectDependencies(this); + + Availability = availability; + Prototype = proto; + + // Get the discipline for background color + var discipline = _prototype.Index(proto.Discipline); + var disciplineColor = discipline.Color; + + // Handle technology icon - prioritize EntityIcon for full sprite layers + if (proto.EntityIcon.HasValue) + { + // Use EntityPrototypeView to show all sprite layers + ResearchDisplay.SetPrototype(proto.EntityIcon.Value); + } + else if (proto.Icon != null) + { + // For legacy Icon support, we need to handle this differently since EntityPrototypeView + // expects entity prototypes. For now, we'll need a fallback approach. + // TODO: Consider deprecating the Icon field in favor of EntityIcon + + // We cannot directly set a SpriteSpecifier on EntityPrototypeView + // This is a limitation of the new approach - EntityIcon should be preferred + // For now, this will show no icon for legacy Icon-only technologies + ResearchDisplay.SetPrototype(null); + } + else + { + // No icon specified + ResearchDisplay.SetPrototype(null); + } + + Button.OnPressed += Selected; + Button.OnDrawModeChanged += UpdateColor; + + // Set colors - only border color varies by availability state + var availabilityBorderColor = availability switch + { + ResearchAvailability.Researched => Color.FromHex("#2ab043"), + ResearchAvailability.Available => Color.FromHex("#fab325"), + ResearchAvailability.PrereqsMet => Color.FromHex("#91752f"), + ResearchAvailability.Unavailable => Color.Crimson, + _ => Color.Crimson + }; + + // Background always uses discipline color + // Create a brighter version of the discipline color for hover by interpolating with white + HoveredColor = Color.InterpolateBetween(disciplineColor, Color.White, 0.3f); + // Create an even brighter version for selection (persistent bright highlight) + SelectedColor = Color.InterpolateBetween(disciplineColor, Color.White, 0.5f); + // Only border color varies by availability + BorderColor = availabilityBorderColor; + + // Create rounded style box with 8px corner radius and thick border + var roundedStyle = new RoundedStyleBoxFlat + { + BorderColor = BorderColor, + BorderThickness = new Thickness(2.5f), + CornerRadius = 8f + }; + + Panel.PanelOverride = roundedStyle; + UpdateColor(); + } + + private void UpdateColor() + { + if (Panel.PanelOverride is RoundedStyleBoxFlat panel) + { + // Priority: Selected > Hovered > Normal + if (IsSelected) + panel.BackgroundColor = SelectedColor; + else if (Button.IsHovered) + panel.BackgroundColor = HoveredColor; + else + panel.BackgroundColor = BackgroundColor; + + panel.BorderColor = BorderColor; + } + } + + protected override void ExitedTree() + { + base.ExitedTree(); + + Button.OnPressed -= Selected; + } + + private void Selected(BaseButton.ButtonEventArgs args) + { + SelectAction?.Invoke(Prototype, Availability); + } +} + +public sealed class DrawButton : Button +{ + public event Action? OnDrawModeChanged; + + public DrawButton() + { + } + + protected override void DrawModeChanged() + { + OnDrawModeChanged?.Invoke(); + } +} diff --git a/Content.Client/_NF/Research/UI/FancyResearchConsoleMenu.xaml b/Content.Client/_Goobstation/Research/UI/FancyResearchConsoleMenu.xaml similarity index 71% rename from Content.Client/_NF/Research/UI/FancyResearchConsoleMenu.xaml rename to Content.Client/_Goobstation/Research/UI/FancyResearchConsoleMenu.xaml index ec87923e0a2c..017efa2faa00 100644 --- a/Content.Client/_NF/Research/UI/FancyResearchConsoleMenu.xaml +++ b/Content.Client/_Goobstation/Research/UI/FancyResearchConsoleMenu.xaml @@ -2,7 +2,7 @@ xmlns:gfx="clr-namespace:Robust.Client.Graphics;assembly=Robust.Client" xmlns:controls="clr-namespace:Content.Client.UserInterface.Controls;assembly=Content.Client" xmlns:customControls="clr-namespace:Content.Client.Administration.UI.CustomControls;assembly=Content.Client" - xmlns:nf="clr-namespace:Content.Client._NF.Research.UI" + xmlns:goob="clr-namespace:Content.Client._Goobstation.Research.UI" Title="{Loc 'research-console-menu-title'}" SetSize="1000 600" MinSize="800 400"> @@ -30,36 +30,24 @@ - + - - - - - - + Name="DragContainer" + MouseFilter="Pass" + RectClipContent="True"> + + diff --git a/Content.Client/_NF/Research/UI/MiniRecipeCardControl.xaml.cs b/Content.Client/_Goobstation/Research/UI/MiniRecipeCardControl.xaml.cs similarity index 84% rename from Content.Client/_NF/Research/UI/MiniRecipeCardControl.xaml.cs rename to Content.Client/_Goobstation/Research/UI/MiniRecipeCardControl.xaml.cs index e89a6a842fcb..41008074cc0e 100644 --- a/Content.Client/_NF/Research/UI/MiniRecipeCardControl.xaml.cs +++ b/Content.Client/_Goobstation/Research/UI/MiniRecipeCardControl.xaml.cs @@ -8,7 +8,7 @@ using Robust.Shared.Prototypes; using Robust.Shared.Utility; -namespace Content.Client._NF.Research.UI; +namespace Content.Client._Goobstation.Research.UI; [GenerateTypedNameReferences] public sealed partial class MiniRecipeCardControl : Control @@ -22,8 +22,7 @@ public MiniRecipeCardControl(TechnologyPrototype technology, LatheRecipePrototyp NameLabel.SetMessage(lathe.GetRecipeName(proto)); if (proto.Result.HasValue) - // Showcase.Texture = sprite.Frame0(prototypeManager.Index(proto.Result.Value)); // Frontier - Showcase.SetPrototype(proto.Result); // Frontier + Showcase.Texture = sprite.Frame0(prototypeManager.Index(proto.Result.Value)); if (proto.Description.HasValue) { diff --git a/Content.Client/_NF/Research/UI/ResearchesContainerPanel.cs b/Content.Client/_Goobstation/Research/UI/ResearchesContainerPanel.cs similarity index 99% rename from Content.Client/_NF/Research/UI/ResearchesContainerPanel.cs rename to Content.Client/_Goobstation/Research/UI/ResearchesContainerPanel.cs index f7df6db4ccc2..a5c78536a1f8 100644 --- a/Content.Client/_NF/Research/UI/ResearchesContainerPanel.cs +++ b/Content.Client/_Goobstation/Research/UI/ResearchesContainerPanel.cs @@ -1,11 +1,11 @@ using Robust.Client.Graphics; using Robust.Client.UserInterface.Controls; -using Content.Shared._NF.Research; +using Content.Shared._Goobstation.Research; using Content.Shared.Research.Prototypes; using System.Linq; using System.Numerics; -namespace Content.Client._NF.Research.UI; +namespace Content.Client._Goobstation.Research.UI; /// /// UI element for visualizing technologies prerequisites with configurable connection types diff --git a/Content.Client/_Goobstation/Research/UI/RoundedStyleBoxFlat.cs b/Content.Client/_Goobstation/Research/UI/RoundedStyleBoxFlat.cs new file mode 100644 index 000000000000..aabf87f3a926 --- /dev/null +++ b/Content.Client/_Goobstation/Research/UI/RoundedStyleBoxFlat.cs @@ -0,0 +1,172 @@ +using System.Numerics; +using Robust.Client.Graphics; + +namespace Content.Client._Goobstation.Research.UI; + +/// +/// A StyleBoxFlat with rounded corners support +/// +public sealed class RoundedStyleBoxFlat : StyleBox +{ + public Color BackgroundColor { get; set; } + public Color BorderColor { get; set; } + + /// + /// Thickness of the border, in virtual pixels. + /// + public Thickness BorderThickness { get; set; } + + /// + /// Radius of the rounded corners, in virtual pixels. + /// + public float CornerRadius { get; set; } = 0f; + + protected override void DoDraw(DrawingHandleScreen handle, UIBox2 box, float uiScale) + { + var scaledRadius = CornerRadius * uiScale; + var thickness = BorderThickness.Scale(uiScale); + + if (scaledRadius <= 0) + { + // Draw as regular rectangle if no corner radius + DrawRegularRect(handle, box, thickness); + } + else + { + // Draw rounded rectangle + DrawRoundedRect(handle, box, thickness, scaledRadius); + } + } + + private void DrawRegularRect(DrawingHandleScreen handle, UIBox2 box, Thickness thickness) + { + var (btl, btt, btr, btb) = thickness; + + // Draw borders + if (btl > 0) + handle.DrawRect(new UIBox2(box.Left, box.Top, box.Left + btl, box.Bottom), BorderColor); + + if (btt > 0) + handle.DrawRect(new UIBox2(box.Left, box.Top, box.Right, box.Top + btt), BorderColor); + + if (btr > 0) + handle.DrawRect(new UIBox2(box.Right - btr, box.Top, box.Right, box.Bottom), BorderColor); + + if (btb > 0) + handle.DrawRect(new UIBox2(box.Left, box.Bottom - btb, box.Right, box.Bottom), BorderColor); + + // Draw background + handle.DrawRect(thickness.Deflate(box), BackgroundColor); + } + + private void DrawRoundedRect(DrawingHandleScreen handle, UIBox2 box, Thickness thickness, float radius) + { + // Clamp radius to not exceed half the box dimensions + var maxRadius = Math.Min(box.Width, box.Height) / 2f; + radius = Math.Min(radius, maxRadius); + + // Draw background first + DrawRoundedBackground(handle, box, radius); + + // Draw border if needed + if (thickness.Left > 0 || thickness.Top > 0 || thickness.Right > 0 || thickness.Bottom > 0) + { + DrawRoundedBorder(handle, box, thickness, radius); + } + } + + private List CreateRoundedRectVertices(UIBox2 box, float radius) + { + var vertices = new List(); + const int segments = 16; + + // Top-left + var tl = new Vector2(box.Left + radius, box.Top + radius); + for (var i = 0; i <= segments; i++) + { + var angle = MathF.PI + (MathF.PI / 2) * (i / (float)segments); + vertices.Add(tl + new Vector2(MathF.Cos(angle), MathF.Sin(angle)) * radius); + } + + // Top-right + var tr = new Vector2(box.Right - radius, box.Top + radius); + for (var i = 0; i <= segments; i++) + { + var angle = 3 * MathF.PI / 2 + (MathF.PI / 2) * (i / (float)segments); + vertices.Add(tr + new Vector2(MathF.Cos(angle), MathF.Sin(angle)) * radius); + } + + // Bottom-right + var br = new Vector2(box.Right - radius, box.Bottom - radius); + for (var i = 0; i <= segments; i++) + { + var angle = 0 + (MathF.PI / 2) * (i / (float)segments); + vertices.Add(br + new Vector2(MathF.Cos(angle), MathF.Sin(angle)) * radius); + } + + // Bottom-left + var bl = new Vector2(box.Left + radius, box.Bottom - radius); + for (var i = 0; i <= segments; i++) + { + var angle = MathF.PI / 2 + (MathF.PI / 2) * (i / (float)segments); + vertices.Add(bl + new Vector2(MathF.Cos(angle), MathF.Sin(angle)) * radius); + } + + return vertices; + } + + private void DrawRoundedBackground(DrawingHandleScreen handle, UIBox2 box, float radius) + { + var vertices = CreateRoundedRectVertices(box, radius); + handle.DrawPrimitives(DrawPrimitiveTopology.TriangleFan, vertices.ToArray(), BackgroundColor); + } + + private void DrawRoundedBorder(DrawingHandleScreen handle, UIBox2 box, Thickness thickness, float radius) + { + var outer = CreateRoundedRectVertices(box, radius); + var innerBox = new UIBox2(box.Left + thickness.Left, box.Top + thickness.Top, box.Right - thickness.Right, box.Bottom - thickness.Bottom); + var innerRadius = Math.Max(0, radius - Math.Max(thickness.Left, thickness.Top)); + var inner = CreateRoundedRectVertices(innerBox, innerRadius); + + var vertices = new List(); + for (var i = 0; i < outer.Count; i++) + { + vertices.Add(outer[i]); + vertices.Add(inner[i]); + } + vertices.Add(outer[0]); + vertices.Add(inner[0]); + + handle.DrawPrimitives(DrawPrimitiveTopology.TriangleStrip, vertices.ToArray(), BorderColor); + } + + public RoundedStyleBoxFlat() + { + } + + public RoundedStyleBoxFlat(Color backgroundColor, float cornerRadius = 0f) + { + BackgroundColor = backgroundColor; + CornerRadius = cornerRadius; + } + + public RoundedStyleBoxFlat(RoundedStyleBoxFlat other) : base(other) + { + BackgroundColor = other.BackgroundColor; + BorderColor = other.BorderColor; + BorderThickness = other.BorderThickness; + CornerRadius = other.CornerRadius; + } + + protected override float GetDefaultContentMargin(Margin margin) + { + return margin switch + { + Margin.Top => BorderThickness.Top, + Margin.Bottom => BorderThickness.Bottom, + Margin.Right => BorderThickness.Right, + Margin.Left => BorderThickness.Left, + _ => throw new ArgumentOutOfRangeException(nameof(margin), margin, null) + }; + } +} diff --git a/Content.Client/_NF/Research/UI/FancyResearchConsoleItem.xaml.cs b/Content.Client/_NF/Research/UI/FancyResearchConsoleItem.xaml.cs deleted file mode 100644 index cd1a96f05bc0..000000000000 --- a/Content.Client/_NF/Research/UI/FancyResearchConsoleItem.xaml.cs +++ /dev/null @@ -1,208 +0,0 @@ -using Content.Shared._NF.Research; -using Content.Shared.Research.Prototypes; -using Robust.Client.AutoGenerated; -using Robust.Client.GameObjects; -using Robust.Client.UserInterface.Controls; -using Robust.Client.UserInterface.XAML; -using Robust.Shared.Prototypes; - -namespace Content.Client._NF.Research.UI; - -[GenerateTypedNameReferences] -public sealed partial class FancyResearchConsoleItem : LayoutContainer -{ - [Dependency] private readonly IPrototypeManager _prototype = default!; - - // Public fields - public TechnologyPrototype Prototype; - public Action? SelectAction; - public ResearchAvailability Availability; - - // Some visuals - now using centralized color scheme - public static readonly Color DefaultColor = ResearchColorScheme.UIColors.DefaultTechBackground; - public static readonly Color DefaultBorderColor = ResearchColorScheme.UIColors.DefaultTechBorder; - public static readonly Color DefaultHoveredColor = ResearchColorScheme.UIColors.DefaultTechHover; - - public Color BackgroundColor = DefaultColor; - public Color SecondaryBackgroundColor = DefaultColor; - public Color BorderColor = DefaultBorderColor; - public Color HoveredColor = DefaultHoveredColor; - public Color SecondaryHoveredColor = DefaultHoveredColor; - public Color SelectedColor = DefaultHoveredColor; - public Color SecondarySelectedColor = DefaultHoveredColor; - - // Selection state - private bool _isSelected = false; - public bool IsSelected - { - get => _isSelected; - set - { - if (_isSelected == value) - return; - _isSelected = value; - UpdateColor(); - } - } - - public FancyResearchConsoleItem(TechnologyPrototype proto, SpriteSystem sprite, ResearchAvailability availability) - { - RobustXamlLoader.Load(this); - IoCManager.InjectDependencies(this); - - Availability = availability; - Prototype = proto; - - // Get the primary discipline for background color - var primaryDiscipline = _prototype.Index(proto.Discipline); - var primaryColor = primaryDiscipline.Color; - - // Check if there's a secondary discipline - TechDisciplinePrototype? secondaryDiscipline = null; - Color? secondaryColor = null; - if (proto.SecondaryDiscipline.HasValue) - { - secondaryDiscipline = _prototype.Index(proto.SecondaryDiscipline.Value); - secondaryColor = secondaryDiscipline.Color; - } - - // Handle technology icon - prioritize EntityIcon for full sprite layers - if (proto.EntityIcon.HasValue) - { - // Use EntityPrototypeView to show all sprite layers - ResearchDisplay.SetPrototype(proto.EntityIcon.Value); - } - else if (proto.Icon != null) - { - // For legacy Icon support, we need to handle this differently since EntityPrototypeView - // expects entity prototypes. For now, we'll need a fallback approach. - // TODO: Consider deprecating the Icon field in favor of EntityIcon - - // We cannot directly set a SpriteSpecifier on EntityPrototypeView - // This is a limitation of the new approach - EntityIcon should be preferred - // For now, this will show no icon for legacy Icon-only technologies - ResearchDisplay.SetPrototype(null); - } - else - { - // No icon specified - ResearchDisplay.SetPrototype(null); - } - - Button.OnPressed += Selected; - Button.OnDrawModeChanged += UpdateColor; - - // Set colors - border & background color varies by availability state - BorderColor = ResearchColorScheme.GetTechBorderColor(availability); - - // Calculate background colors based on availability using centralized factors - var darkenFactor = ResearchColorScheme.GetBackgroundInterpolationFactor(availability); - - BackgroundColor = Color.InterpolateBetween(primaryColor, Color.Black, darkenFactor); - if (secondaryColor.HasValue) - SecondaryBackgroundColor = Color.InterpolateBetween(secondaryColor.Value, Color.Black, darkenFactor); - - // Create brighter versions of the discipline colors for hover by interpolating with white - var hoverFactor = ResearchColorScheme.GetHoverMixingFactor(); - HoveredColor = Color.InterpolateBetween(primaryColor, Color.White, hoverFactor); - if (secondaryColor.HasValue) - SecondaryHoveredColor = Color.InterpolateBetween(secondaryColor.Value, Color.White, hoverFactor); - - // Create even brighter versions for selection (persistent bright highlight) - var selectionFactor = ResearchColorScheme.GetSelectionMixingFactor(); - SelectedColor = Color.InterpolateBetween(primaryColor, Color.White, selectionFactor); - if (secondaryColor.HasValue) - SecondarySelectedColor = Color.InterpolateBetween(secondaryColor.Value, Color.White, selectionFactor); - - // Create appropriate style box based on whether we have dual disciplines - if (secondaryDiscipline != null) - { - // Create dual-color rounded style box with diagonal split - var dualColorStyle = new RoundedDualColorStyleBoxFlat - { - PrimaryColor = BackgroundColor, - SecondaryColor = SecondaryBackgroundColor, - BorderColor = BorderColor, - BorderThickness = new Thickness(2.5f), - CornerRadius = 8f - }; - Panel.PanelOverride = dualColorStyle; - } - else - { - // Create regular single-color rounded style box - var roundedStyle = new RoundedStyleBoxFlat - { - BackgroundColor = BackgroundColor, - BorderColor = BorderColor, - BorderThickness = new Thickness(2.5f), - CornerRadius = 8f - }; - Panel.PanelOverride = roundedStyle; - } - - UpdateColor(); - } - - private void UpdateColor() - { - if (Panel.PanelOverride is RoundedDualColorStyleBoxFlat dualColorPanel) - { - // Priority: Selected > Hovered > Normal - if (IsSelected) - { - dualColorPanel.PrimaryColor = SelectedColor; - dualColorPanel.SecondaryColor = SecondarySelectedColor; - } - else if (Button.IsHovered) - { - dualColorPanel.PrimaryColor = HoveredColor; - dualColorPanel.SecondaryColor = SecondaryHoveredColor; - } - else - { - dualColorPanel.PrimaryColor = BackgroundColor; - dualColorPanel.SecondaryColor = SecondaryBackgroundColor; - } - dualColorPanel.BorderColor = BorderColor; - } - else if (Panel.PanelOverride is RoundedStyleBoxFlat singleColorPanel) - { - // Priority: Selected > Hovered > Normal - if (IsSelected) - singleColorPanel.BackgroundColor = SelectedColor; - else if (Button.IsHovered) - singleColorPanel.BackgroundColor = HoveredColor; - else - singleColorPanel.BackgroundColor = BackgroundColor; - - singleColorPanel.BorderColor = BorderColor; - } - } - - protected override void ExitedTree() - { - base.ExitedTree(); - - Button.OnPressed -= Selected; - } - - private void Selected(BaseButton.ButtonEventArgs args) - { - SelectAction?.Invoke(Prototype, Availability); - } -} - -public sealed class DrawButton : Button -{ - public event Action? OnDrawModeChanged; - - public DrawButton() - { - } - - protected override void DrawModeChanged() - { - OnDrawModeChanged?.Invoke(); - } -} diff --git a/Content.Client/_NF/Research/UI/ResearchConsoleFrontierBoundUserInterface.cs b/Content.Client/_NF/Research/UI/ResearchConsoleFrontierBoundUserInterface.cs deleted file mode 100644 index 05b5957d3182..000000000000 --- a/Content.Client/_NF/Research/UI/ResearchConsoleFrontierBoundUserInterface.cs +++ /dev/null @@ -1,119 +0,0 @@ -using System.Linq; -using Content.Shared._NF.Research; -using Content.Shared.Research.Components; -using Content.Shared.Research.Prototypes; -using JetBrains.Annotations; -using Robust.Client.UserInterface; -using Robust.Shared.Audio; -using Robust.Shared.Audio.Systems; -using Robust.Shared.Prototypes; - -namespace Content.Client._NF.Research.UI; - -[UsedImplicitly] -public sealed class ResearchConsoleFrontierBoundUserInterface : BoundUserInterface -{ - [ViewVariables] - private FancyResearchConsoleMenu? _consoleMenu; - - private SharedAudioSystem _audioSystem = default!; - [Dependency] private readonly ILogManager _logManager = default!; - private ISawmill _sawmill = default!; - - // Sound to play when unlocking a technology - private static readonly SoundPathSpecifier UnlockSound = new("/Audio/_NF/Research/unlock.ogg"); - - public ResearchConsoleFrontierBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) - { - IoCManager.InjectDependencies(this); - _audioSystem = EntMan.System(); - - _sawmill = _logManager.GetSawmill("research.console"); - _sawmill.Debug($"ResearchConsoleFrontierBoundUserInterface created for {owner} with key {uiKey}"); - } - - protected override void Open() - { - base.Open(); - - var owner = Owner; - _sawmill.Debug($"Opening UI for {owner}"); - - _consoleMenu = this.CreateWindow(); - _consoleMenu.SetEntity(owner); - _consoleMenu.OnClose += () => _consoleMenu = null; - - // Set up technology unlock handler - _consoleMenu.OnTechnologyCardPressed += id => - { - try - { - _sawmill.Debug($"Sending ConsoleUnlockTechnologyMessage for tech ID: {id}"); - - // Create and send the message - var message = new ConsoleUnlockTechnologyMessage(id); - SendMessage(message); - - _audioSystem.PlayPvs(UnlockSound, owner, AudioParams.Default); // Play unlock sound - client-side only - - _sawmill.Info($"Sent unlock message for technology: {id}"); // Log success - } - catch (Exception ex) // Log any exceptions that occur during message sending - { - _sawmill.Error($"Error sending technology unlock message for {id}: {ex}"); - } - }; - - _consoleMenu.OnServerButtonPressed += () => - { - _sawmill.Debug("Sending ConsoleServerSelectionMessage"); - SendMessage(new ConsoleServerSelectionMessage()); - }; - } - - public override void OnProtoReload(PrototypesReloadedEventArgs args) - { - base.OnProtoReload(args); - - if (!args.WasModified()) - return; - - if (State is not ResearchConsoleBoundInterfaceState rState) - return; - - _sawmill.Debug("Reloading prototypes in UI"); - _consoleMenu?.UpdatePanels(rState.Researches); - _consoleMenu?.UpdateInformationPanel(rState.Points); - } - - protected override void UpdateState(BoundUserInterfaceState state) - { - base.UpdateState(state); - - if (state is not ResearchConsoleBoundInterfaceState castState) - { - _sawmill.Warning("Received non-ResearchConsoleBoundInterfaceState state"); - return; - } - - // Thats for avoiding refresh spam when only points are updated - if (_consoleMenu == null) - { - _sawmill.Warning("Console menu is null during state update"); - return; - } - - _sawmill.Debug($"Updating UI state with {castState.Points} points and {castState.Researches.Count} technologies"); - - var availableTechs = castState.Researches.Count(t => t.Value == ResearchAvailability.Available); - _sawmill.Debug($"Available technologies: {availableTechs}"); - - if (!_consoleMenu.List.SequenceEqual(castState.Researches)) - { - _sawmill.Debug("Technologies list changed, updating panels"); - _consoleMenu.UpdatePanels(castState.Researches); - } - - _consoleMenu.UpdateInformationPanel(castState.Points); // always update panel - } -} diff --git a/Content.Client/_NF/Research/UI/ResearchConsoleGoobBoundUserInterface.cs b/Content.Client/_NF/Research/UI/ResearchConsoleGoobBoundUserInterface.cs deleted file mode 100644 index 07681ca9620a..000000000000 --- a/Content.Client/_NF/Research/UI/ResearchConsoleGoobBoundUserInterface.cs +++ /dev/null @@ -1,123 +0,0 @@ -using System.Linq; -using Content.Shared._NF.Research; -using Content.Shared.Research.Components; -using Content.Shared.Research.Prototypes; -using JetBrains.Annotations; -using Robust.Client.UserInterface; -using Robust.Shared.Audio; -using Robust.Shared.Audio.Systems; -using Robust.Shared.Prototypes; - -namespace Content.Client._NF.Research.UI; - -// Frontier: renamed from FancyResearchConsoleBoundUserInterface to ResearchConsoleGoobBoundUserInterface to avoid collisions (see RT#5648) -[UsedImplicitly] -public sealed class ResearchConsoleGoobBoundUserInterface : BoundUserInterface -{ - [ViewVariables] - private FancyResearchConsoleMenu? _consoleMenu; // Goobstation R&D Console rework - ResearchConsoleMenu -> FancyResearchConsoleMenu - - // Frontier - private SharedAudioSystem _audioSystem = default!; - [Dependency] private readonly ILogManager _logManager = default!; - private ISawmill _sawmill = default!; - - // Sound to play when unlocking a technology - private static readonly SoundPathSpecifier UnlockSound = new("/Audio/_NF/Research/unlock.ogg"); - - public ResearchConsoleGoobBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) - { - IoCManager.InjectDependencies(this); - _audioSystem = EntMan.System(); - - _sawmill = _logManager.GetSawmill("research.console"); - _sawmill.Debug($"ResearchConsoleGoobBoundUserInterface created for {owner} with key {uiKey}"); - } - // End Frontier - - protected override void Open() - { - base.Open(); - - var owner = Owner; - _sawmill.Debug($"Opening UI for {owner}"); // Frontier: added debug log - - _consoleMenu = this.CreateWindow(); // Goobstation R&D Console rework - ResearchConsoleMenu -> FancyResearchConsoleMenu - _consoleMenu.SetEntity(owner); - _consoleMenu.OnClose += () => _consoleMenu = null; - - // Set up technology unlock handler - _consoleMenu.OnTechnologyCardPressed += id => - { - try - { - _sawmill.Debug($"Sending ConsoleUnlockTechnologyMessage for tech ID: {id}"); // Frontier: added debug log - - // Create and send the message - var message = new ConsoleUnlockTechnologyMessage(id); - SendMessage(message); - - _audioSystem.PlayPvs(UnlockSound, owner, AudioParams.Default); // Frontier: Play unlock sound - client-side only - - _sawmill.Info($"Sent unlock message for technology: {id}"); // Frontier: Log success - } - catch (Exception ex) // Frontier: Log any exceptions that occur during message sending - { - _sawmill.Error($"Error sending technology unlock message for {id}: {ex}"); - } - }; - - _consoleMenu.OnServerButtonPressed += () => - { - _sawmill.Debug("Sending ConsoleServerSelectionMessage"); // Frontier: added debug log - SendMessage(new ConsoleServerSelectionMessage()); - }; - } - - public override void OnProtoReload(PrototypesReloadedEventArgs args) - { - base.OnProtoReload(args); - - if (!args.WasModified()) - return; - - if (State is not ResearchConsoleBoundInterfaceState rState) - return; - - _sawmill.Debug("Reloading prototypes in UI"); // Frontier: added debug log - _consoleMenu?.UpdatePanels(rState.Researches); - _consoleMenu?.UpdateInformationPanel(rState.Points); - } - - protected override void UpdateState(BoundUserInterfaceState state) - { - base.UpdateState(state); - - if (state is not ResearchConsoleBoundInterfaceState castState) - { - _sawmill.Warning("Received non-ResearchConsoleBoundInterfaceState state"); // Frontier: added debug log - return; - } - - // Goobstation checks added - // Thats for avoiding refresh spam when only points are updated - if (_consoleMenu == null) - { - _sawmill.Warning("Console menu is null during state update"); // Frontier: added debug log - return; - } - - _sawmill.Debug($"Updating UI state with {castState.Points} points and {castState.Researches.Count} technologies"); // Frontier: added debug log - - var availableTechs = castState.Researches.Count(t => t.Value == ResearchAvailability.Available); - _sawmill.Debug($"Available technologies: {availableTechs}"); // Frontier: added debug log - - if (!_consoleMenu.List.SequenceEqual(castState.Researches)) - { - _sawmill.Debug("Technologies list changed, updating panels"); // Frontier: added debug log - _consoleMenu.UpdatePanels(castState.Researches); - } - - _consoleMenu.UpdateInformationPanel(castState.Points); // Frontier: always update panel - } -} diff --git a/Content.Client/_NF/Research/UI/ResearchUIHelpers.cs b/Content.Client/_NF/Research/UI/ResearchUIHelpers.cs deleted file mode 100644 index 612d30f2fc20..000000000000 --- a/Content.Client/_NF/Research/UI/ResearchUIHelpers.cs +++ /dev/null @@ -1,97 +0,0 @@ -using Content.Shared._NF.Research; -using Robust.Client.Graphics; -using Robust.Shared.Maths; - -namespace Content.Client._NF.Research.UI; - -/// -/// Utility class for creating research-themed UI elements -/// -public static class ResearchUIHelpers -{ - /// - /// Create a StyleBoxFlat with research-appropriate colors - /// - /// Background color - /// Border color - /// Border thickness (default: 1) - /// Configured StyleBoxFlat - public static StyleBoxFlat CreateResearchStyleBox(Color backgroundColor, Color borderColor, - float borderThickness = 1f) - { - return new StyleBoxFlat - { - BackgroundColor = backgroundColor, - BorderColor = borderColor, - BorderThickness = new Thickness(borderThickness), - Padding = new Thickness(3), - ContentMarginBottomOverride = 3, - ContentMarginLeftOverride = 5, - ContentMarginRightOverride = 5, - ContentMarginTopOverride = 3, - }; - } - - /// - /// Create a research-themed StyleBoxFlat for a specific availability state - /// - /// Research availability state - /// Primary discipline color - /// Border thickness (default: 2.5) - /// Configured StyleBoxFlat - public static StyleBoxFlat CreateTechItemStyleBox(ResearchAvailability availability, Color primaryColor, - float borderThickness = 2.5f) - { - var darkenFactor = ResearchColorScheme.GetBackgroundInterpolationFactor(availability); - var backgroundColor = Color.InterpolateBetween(primaryColor, Color.Black, darkenFactor); - var borderColor = ResearchColorScheme.GetTechBorderColor(availability); - - return CreateResearchStyleBox(backgroundColor, borderColor, borderThickness); - } - - /// - /// Create a research-themed RoundedStyleBoxFlat for a specific availability state - /// - /// Research availability state - /// Primary discipline color - /// Border thickness (default: 2.5) - /// Corner radius (default: 8) - /// Configured RoundedStyleBoxFlat - public static RoundedStyleBoxFlat CreateRoundedTechItemStyleBox(ResearchAvailability availability, - Color primaryColor, float borderThickness = 2.5f, float cornerRadius = 8f) - { - var darkenFactor = ResearchColorScheme.GetBackgroundInterpolationFactor(availability); - var backgroundColor = Color.InterpolateBetween(primaryColor, Color.Black, darkenFactor); - var borderColor = ResearchColorScheme.GetTechBorderColor(availability); - - return new RoundedStyleBoxFlat - { - BackgroundColor = backgroundColor, - BorderColor = borderColor, - BorderThickness = new Thickness(borderThickness), - CornerRadius = cornerRadius - }; - } - - /// - /// Create scrollbar StyleBoxFlat with research theme - /// - /// Scrollbar state (normal, hovered, grabbed) - /// Configured StyleBoxFlat - public static StyleBoxFlat CreateScrollbarStyleBox(string state = "normal") - { - var color = state.ToLower() switch - { - "hovered" => ResearchColorScheme.UIColors.Scrollbar.Hovered, - "grabbed" => ResearchColorScheme.UIColors.Scrollbar.Grabbed, - _ => ResearchColorScheme.UIColors.Scrollbar.Normal - }; - - return new StyleBoxFlat - { - BackgroundColor = color, - ContentMarginLeftOverride = 10, - ContentMarginTopOverride = 10 - }; - } -} diff --git a/Content.Client/_NF/Research/UI/RoundedStyleBoxFlat.cs b/Content.Client/_NF/Research/UI/RoundedStyleBoxFlat.cs deleted file mode 100644 index ee55992d62a3..000000000000 --- a/Content.Client/_NF/Research/UI/RoundedStyleBoxFlat.cs +++ /dev/null @@ -1,393 +0,0 @@ -using System.Numerics; -using Robust.Client.Graphics; - -namespace Content.Client._NF.Research.UI; - -/// -/// A StyleBoxFlat with rounded corners support -/// -public sealed class RoundedStyleBoxFlat : StyleBox -{ - public Color BackgroundColor { get; set; } - public Color BorderColor { get; set; } - - /// - /// Thickness of the border, in virtual pixels. - /// - public Thickness BorderThickness { get; set; } - - /// - /// Radius of the rounded corners, in virtual pixels. - /// - public float CornerRadius { get; set; } = 0f; - - protected override void DoDraw(DrawingHandleScreen handle, UIBox2 box, float uiScale) - { - var scaledRadius = CornerRadius * uiScale; - var thickness = BorderThickness.Scale(uiScale); - - if (scaledRadius <= 0) - { - // Draw as regular rectangle if no corner radius - DrawRegularRect(handle, box, thickness); - } - else - { - // Draw rounded rectangle - DrawRoundedRect(handle, box, thickness, scaledRadius); - } - } - - private void DrawRegularRect(DrawingHandleScreen handle, UIBox2 box, Thickness thickness) - { - var (btl, btt, btr, btb) = thickness; - - // Draw borders - if (btl > 0) - handle.DrawRect(new UIBox2(box.Left, box.Top, box.Left + btl, box.Bottom), BorderColor); - - if (btt > 0) - handle.DrawRect(new UIBox2(box.Left, box.Top, box.Right, box.Top + btt), BorderColor); - - if (btr > 0) - handle.DrawRect(new UIBox2(box.Right - btr, box.Top, box.Right, box.Bottom), BorderColor); - - if (btb > 0) - handle.DrawRect(new UIBox2(box.Left, box.Bottom - btb, box.Right, box.Bottom), BorderColor); - - // Draw background - handle.DrawRect(thickness.Deflate(box), BackgroundColor); - } - - private void DrawRoundedRect(DrawingHandleScreen handle, UIBox2 box, Thickness thickness, float radius) - { - // Clamp radius to not exceed half the box dimensions - var maxRadius = Math.Min(box.Width, box.Height) / 2f; - radius = Math.Min(radius, maxRadius); - - // Draw background first - DrawRoundedBackground(handle, box, radius); - - // Draw border if needed - if (thickness.Left > 0 || thickness.Top > 0 || thickness.Right > 0 || thickness.Bottom > 0) - { - DrawRoundedBorder(handle, box, thickness, radius); - } - } - - private List CreateRoundedRectVertices(UIBox2 box, float radius) - { - var vertices = new List(); - const int segments = 16; - - // Top-left - var tl = new Vector2(box.Left + radius, box.Top + radius); - for (var i = 0; i <= segments; i++) - { - var angle = MathF.PI + (MathF.PI / 2) * (i / (float)segments); - vertices.Add(tl + new Vector2(MathF.Cos(angle), MathF.Sin(angle)) * radius); - } - - // Top-right - var tr = new Vector2(box.Right - radius, box.Top + radius); - for (var i = 0; i <= segments; i++) - { - var angle = 3 * MathF.PI / 2 + (MathF.PI / 2) * (i / (float)segments); - vertices.Add(tr + new Vector2(MathF.Cos(angle), MathF.Sin(angle)) * radius); - } - - // Bottom-right - var br = new Vector2(box.Right - radius, box.Bottom - radius); - for (var i = 0; i <= segments; i++) - { - var angle = 0 + (MathF.PI / 2) * (i / (float)segments); - vertices.Add(br + new Vector2(MathF.Cos(angle), MathF.Sin(angle)) * radius); - } - - // Bottom-left - var bl = new Vector2(box.Left + radius, box.Bottom - radius); - for (var i = 0; i <= segments; i++) - { - var angle = MathF.PI / 2 + (MathF.PI / 2) * (i / (float)segments); - vertices.Add(bl + new Vector2(MathF.Cos(angle), MathF.Sin(angle)) * radius); - } - - return vertices; - } - - private void DrawRoundedBackground(DrawingHandleScreen handle, UIBox2 box, float radius) - { - var vertices = CreateRoundedRectVertices(box, radius); - handle.DrawPrimitives(DrawPrimitiveTopology.TriangleFan, vertices.ToArray(), BackgroundColor); - } - - private void DrawRoundedBorder(DrawingHandleScreen handle, UIBox2 box, Thickness thickness, float radius) - { - var outer = CreateRoundedRectVertices(box, radius); - var innerBox = new UIBox2(box.Left + thickness.Left, box.Top + thickness.Top, box.Right - thickness.Right, box.Bottom - thickness.Bottom); - var innerRadius = Math.Max(0, radius - Math.Max(thickness.Left, thickness.Top)); - var inner = CreateRoundedRectVertices(innerBox, innerRadius); - - var vertices = new List(); - for (var i = 0; i < outer.Count; i++) - { - vertices.Add(outer[i]); - vertices.Add(inner[i]); - } - vertices.Add(outer[0]); - vertices.Add(inner[0]); - - handle.DrawPrimitives(DrawPrimitiveTopology.TriangleStrip, vertices.ToArray(), BorderColor); - } - - public RoundedStyleBoxFlat() - { - } - - public RoundedStyleBoxFlat(Color backgroundColor, float cornerRadius = 0f) - { - BackgroundColor = backgroundColor; - CornerRadius = cornerRadius; - } - - public RoundedStyleBoxFlat(RoundedStyleBoxFlat other) : base(other) - { - BackgroundColor = other.BackgroundColor; - BorderColor = other.BorderColor; - BorderThickness = other.BorderThickness; - CornerRadius = other.CornerRadius; - } - - protected override float GetDefaultContentMargin(Margin margin) - { - return margin switch - { - Margin.Top => BorderThickness.Top, - Margin.Bottom => BorderThickness.Bottom, - Margin.Right => BorderThickness.Right, - Margin.Left => BorderThickness.Left, - _ => throw new ArgumentOutOfRangeException(nameof(margin), margin, null) - }; - } -} - -/// -/// A StyleBoxFlat with rounded corners that supports diagonal split colors for dual-discipline technologies -/// -public sealed class RoundedDualColorStyleBoxFlat : StyleBox -{ - public Color PrimaryColor { get; set; } - public Color SecondaryColor { get; set; } - public Color BorderColor { get; set; } - - /// - /// Thickness of the border, in virtual pixels. - /// - public Thickness BorderThickness { get; set; } - - /// - /// Radius of the rounded corners, in virtual pixels. - /// - public float CornerRadius { get; set; } = 0f; - - protected override void DoDraw(DrawingHandleScreen handle, UIBox2 box, float uiScale) - { - var scaledRadius = CornerRadius * uiScale; - var thickness = BorderThickness.Scale(uiScale); - - if (scaledRadius <= 0) - { - // Draw as regular rectangle if no corner radius - DrawRegularDualColorRect(handle, box, thickness); - } - else - { - // Draw rounded rectangle with dual colors - DrawRoundedDualColorRect(handle, box, thickness, scaledRadius); - } - } - - private void DrawRegularDualColorRect(DrawingHandleScreen handle, UIBox2 box, Thickness thickness) - { - var contentBox = thickness.Deflate(box); - - // Draw diagonal split background - DrawDiagonalSplit(handle, contentBox); - - // Draw borders - var (btl, btt, btr, btb) = thickness; - if (btl > 0) - handle.DrawRect(new UIBox2(box.Left, box.Top, box.Left + btl, box.Bottom), BorderColor); - - if (btt > 0) - handle.DrawRect(new UIBox2(box.Left, box.Top, box.Right, box.Top + btt), BorderColor); - - if (btr > 0) - handle.DrawRect(new UIBox2(box.Right - btr, box.Top, box.Right, box.Bottom), BorderColor); - - if (btb > 0) - handle.DrawRect(new UIBox2(box.Left, box.Bottom - btb, box.Right, box.Bottom), BorderColor); - } - - private void DrawRoundedDualColorRect(DrawingHandleScreen handle, UIBox2 box, Thickness thickness, float radius) - { - // Clamp radius to not exceed half the box dimensions - var maxRadius = Math.Min(box.Width, box.Height) / 2f; - radius = Math.Min(radius, maxRadius); - - // Draw background first with diagonal split - DrawRoundedDualColorBackground(handle, box, radius); - - // Draw border if needed - if (thickness.Left > 0 || thickness.Top > 0 || thickness.Right > 0 || thickness.Bottom > 0) - { - DrawRoundedBorder(handle, box, thickness, radius); - } - } - - private void DrawDiagonalSplit(DrawingHandleScreen handle, UIBox2 box) - { - // Create diagonal split from top-left to bottom-right - var topLeft = new Vector2(box.Left, box.Top); - var topRight = new Vector2(box.Right, box.Top); - var bottomLeft = new Vector2(box.Left, box.Bottom); - var bottomRight = new Vector2(box.Right, box.Bottom); - - // Draw top-right triangle (primary color) - var primaryTriangle = new[] - { - topLeft, - topRight, - bottomRight - }; - handle.DrawPrimitives(DrawPrimitiveTopology.TriangleList, primaryTriangle, PrimaryColor); - - // Draw bottom-left triangle (secondary color) - var secondaryTriangle = new[] - { - topLeft, - bottomLeft, - bottomRight - }; - handle.DrawPrimitives(DrawPrimitiveTopology.TriangleList, secondaryTriangle, SecondaryColor); - } - - private void DrawRoundedDualColorBackground(DrawingHandleScreen handle, UIBox2 box, float radius) - { - var vertices = CreateRoundedRectVertices(box, radius); - var center = box.Center; - - // Create triangles for dual color rendering - for (var i = 0; i < vertices.Count; i++) - { - var vertex1 = vertices[i]; - var vertex2 = vertices[(i + 1) % vertices.Count]; - - // Determine which color to use based on position relative to the diagonal - var color = IsAboveDiagonal(vertex1, box) ? PrimaryColor : SecondaryColor; - - // Draw triangle from center to edge - var triangle = new[] { center, vertex1, vertex2 }; - handle.DrawPrimitives(DrawPrimitiveTopology.TriangleList, triangle, color); - } - } - - private bool IsAboveDiagonal(Vector2 point, UIBox2 box) - { - // Check if point is above the diagonal line from top-left to bottom-right - var relativeX = (point.X - box.Left) / box.Width; - var relativeY = (point.Y - box.Top) / box.Height; - return relativeY < relativeX; - } - - private List CreateRoundedRectVertices(UIBox2 box, float radius) - { - var vertices = new List(); - const int segments = 16; - - // Top-left - var tl = new Vector2(box.Left + radius, box.Top + radius); - for (var i = 0; i <= segments; i++) - { - var angle = MathF.PI + (MathF.PI / 2) * (i / (float)segments); - vertices.Add(tl + new Vector2(MathF.Cos(angle), MathF.Sin(angle)) * radius); - } - - // Top-right - var tr = new Vector2(box.Right - radius, box.Top + radius); - for (var i = 0; i <= segments; i++) - { - var angle = 3 * MathF.PI / 2 + (MathF.PI / 2) * (i / (float)segments); - vertices.Add(tr + new Vector2(MathF.Cos(angle), MathF.Sin(angle)) * radius); - } - - // Bottom-right - var br = new Vector2(box.Right - radius, box.Bottom - radius); - for (var i = 0; i <= segments; i++) - { - var angle = 0 + (MathF.PI / 2) * (i / (float)segments); - vertices.Add(br + new Vector2(MathF.Cos(angle), MathF.Sin(angle)) * radius); - } - - // Bottom-left - var bl = new Vector2(box.Left + radius, box.Bottom - radius); - for (var i = 0; i <= segments; i++) - { - var angle = MathF.PI / 2 + (MathF.PI / 2) * (i / (float)segments); - vertices.Add(bl + new Vector2(MathF.Cos(angle), MathF.Sin(angle)) * radius); - } - - return vertices; - } - - private void DrawRoundedBorder(DrawingHandleScreen handle, UIBox2 box, Thickness thickness, float radius) - { - var outer = CreateRoundedRectVertices(box, radius); - var innerBox = new UIBox2(box.Left + thickness.Left, box.Top + thickness.Top, box.Right - thickness.Right, box.Bottom - thickness.Bottom); - var innerRadius = Math.Max(0, radius - Math.Max(thickness.Left, thickness.Top)); - var inner = CreateRoundedRectVertices(innerBox, innerRadius); - - var vertices = new List(); - for (var i = 0; i < outer.Count; i++) - { - vertices.Add(outer[i]); - vertices.Add(inner[i]); - } - vertices.Add(outer[0]); - vertices.Add(inner[0]); - - handle.DrawPrimitives(DrawPrimitiveTopology.TriangleStrip, vertices.ToArray(), BorderColor); - } - - public RoundedDualColorStyleBoxFlat() - { - } - - public RoundedDualColorStyleBoxFlat(Color primaryColor, Color secondaryColor, float cornerRadius = 0f) - { - PrimaryColor = primaryColor; - SecondaryColor = secondaryColor; - CornerRadius = cornerRadius; - } - - public RoundedDualColorStyleBoxFlat(RoundedDualColorStyleBoxFlat other) : base(other) - { - PrimaryColor = other.PrimaryColor; - SecondaryColor = other.SecondaryColor; - BorderColor = other.BorderColor; - BorderThickness = other.BorderThickness; - CornerRadius = other.CornerRadius; - } - - protected override float GetDefaultContentMargin(Margin margin) - { - return margin switch - { - Margin.Top => BorderThickness.Top, - Margin.Bottom => BorderThickness.Bottom, - Margin.Right => BorderThickness.Right, - Margin.Left => BorderThickness.Left, - _ => throw new ArgumentOutOfRangeException(nameof(margin), margin, null) - }; - } -} diff --git a/Content.Server/Anomaly/Components/AnomalyGeneratorComponent.cs b/Content.Server/Anomaly/Components/AnomalyGeneratorComponent.cs index 376656a981cd..132cd7520b7a 100644 --- a/Content.Server/Anomaly/Components/AnomalyGeneratorComponent.cs +++ b/Content.Server/Anomaly/Components/AnomalyGeneratorComponent.cs @@ -45,7 +45,7 @@ public sealed partial class AnomalyGeneratorComponent : Component /// The amount of material needed to generate a single anomaly /// [DataField("materialPerAnomaly"), ViewVariables(VVAccess.ReadWrite)] - public int MaterialPerAnomaly = 300; // Frontier - 1500<300 + public int MaterialPerAnomaly = 200; // Forge Frontier - 1500<200 /// /// The random anomaly spawner entity diff --git a/Content.Server/Research/Systems/ResearchSystem.Console.cs b/Content.Server/Research/Systems/ResearchSystem.Console.cs index 200a3b83368b..4e078e6b64aa 100644 --- a/Content.Server/Research/Systems/ResearchSystem.Console.cs +++ b/Content.Server/Research/Systems/ResearchSystem.Console.cs @@ -7,7 +7,7 @@ using Content.Shared.IdentityManagement; using Content.Shared.Research.Components; using Content.Shared.Research.Prototypes; -using Content.Shared._NF.Research; // Frontier +using Content.Shared._Goobstation.Research; // Goobstation using System.Linq; // Frontier using Robust.Shared.Prototypes; // Frontier @@ -155,5 +155,4 @@ private void OnEmagged(Entity ent, ref GotEmaggedEvent } */ // End Frontier: unneeded emag call - } diff --git a/Content.Server/Research/Systems/ResearchSystem.Server.cs b/Content.Server/Research/Systems/ResearchSystem.Server.cs index 7b0a710c0242..e66b0e4560a0 100644 --- a/Content.Server/Research/Systems/ResearchSystem.Server.cs +++ b/Content.Server/Research/Systems/ResearchSystem.Server.cs @@ -1,11 +1,14 @@ using System.Linq; using Content.Server.Power.EntitySystems; using Content.Shared.Research.Components; +using Content.Shared.Research.Prototypes; // Forge-change +using Robust.Shared.Containers; // Forge-change namespace Content.Server.Research.Systems; public sealed partial class ResearchSystem { + [Dependency] private readonly SharedContainerSystem _container = default!; // Forge-change private void InitializeServer() { SubscribeLocalEvent(OnServerStartup); @@ -13,6 +16,9 @@ private void InitializeServer() SubscribeLocalEvent(OnServerDatabaseModified); SubscribeLocalEvent(OnServerAnchorChanged); // Frontier SubscribeLocalEvent(OnServerParentChanged); // Frontier + + SubscribeLocalEvent(OnDiskInserted); // Forge-change + SubscribeLocalEvent(OnDiskRemoved); // Forge-change } private void OnServerStartup(EntityUid uid, ResearchServerComponent component, ComponentStartup args) @@ -226,4 +232,76 @@ private void OnServerParentChanged(Entity ent, ref EntP Dirty(ent); } // End Frontier + + // Forge-change-start + private void OnDiskInserted(EntityUid uid, ResearchServerComponent server, ref EntInsertedIntoContainerMessage args) + { + if (args.Container.ID != "disk_slot") + return; + + if (!HasComp(args.Entity)) + return; + + server.InsertedDisks.Add(args.Entity); + + if (TryComp(uid, out var db)) + { + var disk = Comp(args.Entity); + + foreach (var discipline in disk.Disciplines) + { + if (!db.SupportedDisciplines.Contains(discipline)) + db.SupportedDisciplines.Add(discipline); + } + + foreach (var tech in disk.UnlockedTechnologies) + { + if (!db.UnlockedTechnologies.Contains(tech)) + db.UnlockedTechnologies.Add(tech); + } + } + + Dirty(uid, server); + var ev = new TechnologyDatabaseModifiedEvent(); + RaiseLocalEvent(uid, ref ev); + UpdateConsoleInterface(uid); + } + + private void OnDiskRemoved(EntityUid uid, ResearchServerComponent server, EntRemovedFromContainerMessage args) + { + if (args.Container.ID != "disk_slot") + return; + + server.InsertedDisks.Remove(args.Entity); + + if (TryComp(args.Entity, out var disk) && + TryComp(uid, out var db)) + { + foreach (var discipline in disk.Disciplines) + { + bool stillPresent = server.InsertedDisks.Any(d => + TryComp(d, out var otherDisk) && + otherDisk.Disciplines.Contains(discipline)); + + if (!stillPresent) + db.SupportedDisciplines.Remove(discipline); + } + + foreach (var tech in disk.UnlockedTechnologies) + { + bool stillPresent = server.InsertedDisks.Any(d => + TryComp(d, out var otherDisk) && + otherDisk.UnlockedTechnologies.Contains(tech)); + + if (!stillPresent) + db.UnlockedTechnologies.Remove(tech); + } + } + + Dirty(uid, server); + var ev = new TechnologyDatabaseModifiedEvent(); + RaiseLocalEvent(uid, ref ev); + UpdateConsoleInterface(uid); + } + // Forge-change-end } diff --git a/Content.Server/Research/Systems/ResearchSystem.Technology.cs b/Content.Server/Research/Systems/ResearchSystem.Technology.cs index 360361da5ced..37cc5170a327 100644 --- a/Content.Server/Research/Systems/ResearchSystem.Technology.cs +++ b/Content.Server/Research/Systems/ResearchSystem.Technology.cs @@ -74,7 +74,7 @@ public bool UnlockTechnology(EntityUid client, if (!Resolve(client, ref component, ref clientDatabase, false)) return false; - if (!TryGetClientServer(client, out var serverEnt, out _, component)) + if (!TryGetClientServer(client, out var serverEnt, out var serverComp, component)) return false; if (!CanServerUnlockTechnology(client, prototype, clientDatabase, component)) @@ -85,6 +85,20 @@ public bool UnlockTechnology(EntityUid client, ModifyServerPoints(serverEnt.Value, -prototype.Cost); UpdateTechnologyCards(serverEnt.Value); + // Forge-change-start + foreach (var diskUid in serverComp.InsertedDisks) + { + if (!TryComp(diskUid, out var disk)) + continue; + + if (disk.Disciplines.Contains(prototype.Discipline)) + { + if (!disk.UnlockedTechnologies.Contains(prototype.ID)) + disk.UnlockedTechnologies.Add(prototype.ID); + } + } + // Forge-change-end + _adminLog.Add(LogType.Action, LogImpact.Medium, $"{ToPrettyString(user):player} unlocked {prototype.ID} (discipline: {prototype.Discipline}, tier: {prototype.Tier}) at {ToPrettyString(client)}, for server {ToPrettyString(serverEnt.Value)}."); return true; diff --git a/Content.Shared/Research/Components/ResearchServerComponent.cs b/Content.Shared/Research/Components/ResearchServerComponent.cs index 3663e760f119..62ca9d9e2342 100644 --- a/Content.Shared/Research/Components/ResearchServerComponent.cs +++ b/Content.Shared/Research/Components/ResearchServerComponent.cs @@ -42,6 +42,13 @@ public sealed partial class ResearchServerComponent : Component [DataField("researchConsoleUpdateTime"), ViewVariables(VVAccess.ReadWrite)] public TimeSpan ResearchConsoleUpdateTime = TimeSpan.FromSeconds(1); + + // Forge-change + [AutoNetworkedField] + [DataField("insertedDisks")] + [ViewVariables(VVAccess.ReadOnly)] + public List InsertedDisks = new(); + // Forge-change end } /// diff --git a/Content.Shared/Research/Components/SharedResearchConsoleComponent.cs b/Content.Shared/Research/Components/SharedResearchConsoleComponent.cs index aebbc9b994f1..80dda2d267c8 100644 --- a/Content.Shared/Research/Components/SharedResearchConsoleComponent.cs +++ b/Content.Shared/Research/Components/SharedResearchConsoleComponent.cs @@ -1,5 +1,5 @@ using Robust.Shared.Serialization; -using Content.Shared._NF.Research; // Frontier +using Content.Shared._Goobstation.Research; // Goobstation namespace Content.Shared.Research.Components { diff --git a/Content.Shared/_Forge/Research/TechnologyDiskComponent.cs b/Content.Shared/_Forge/Research/TechnologyDiskComponent.cs new file mode 100644 index 000000000000..378c0bb4d4b1 --- /dev/null +++ b/Content.Shared/_Forge/Research/TechnologyDiskComponent.cs @@ -0,0 +1,16 @@ +using Content.Shared.Research.Prototypes; +using Robust.Shared.GameObjects; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; + +namespace Content.Shared.Research.Components; + +[RegisterComponent] +public sealed partial class TechDiskComponent : Component +{ + [DataField("disciplines", customTypeSerializer: typeof(PrototypeIdListSerializer))] + public List Disciplines = new(); + + [DataField("unlocked", customTypeSerializer: typeof(PrototypeIdListSerializer))] + public List UnlockedTechnologies = new(); +} diff --git a/Content.Shared/_NF/Research/ResearchAvailability.cs b/Content.Shared/_Goobstation/Research/ResearchAvailability.cs similarity index 78% rename from Content.Shared/_NF/Research/ResearchAvailability.cs rename to Content.Shared/_Goobstation/Research/ResearchAvailability.cs index 8c5aa4e0a244..93fa62355a51 100644 --- a/Content.Shared/_NF/Research/ResearchAvailability.cs +++ b/Content.Shared/_Goobstation/Research/ResearchAvailability.cs @@ -1,6 +1,6 @@ using Robust.Shared.Serialization; -namespace Content.Shared._NF.Research; +namespace Content.Shared._Goobstation.Research; [Serializable, NetSerializable] public enum ResearchAvailability : byte diff --git a/Content.Shared/_NF/Research/ResearchColorScheme.cs b/Content.Shared/_Goobstation/Research/ResearchColorScheme.cs similarity index 99% rename from Content.Shared/_NF/Research/ResearchColorScheme.cs rename to Content.Shared/_Goobstation/Research/ResearchColorScheme.cs index 8a193c58226b..f2d54a55694d 100644 --- a/Content.Shared/_NF/Research/ResearchColorScheme.cs +++ b/Content.Shared/_Goobstation/Research/ResearchColorScheme.cs @@ -1,6 +1,6 @@ using Robust.Shared.Maths; -namespace Content.Shared._NF.Research; +namespace Content.Shared._Goobstation.Research; /// /// Optimized configurable color scheme for research UI elements @@ -8,17 +8,17 @@ namespace Content.Shared._NF.Research; /// /// This class centralizes all research UI colors to eliminate hardcoded values and improve maintainability. /// Colors are organized by functional categories and can be modified at runtime. -/// +/// /// Example usage: /// /// // Get tech item colors /// var colors = ResearchColorScheme.GetTechItemColors(ResearchAvailability.Available); -/// +/// /// // Get UI element colors /// var scrollbarColors = ResearchColorScheme.UIColors.Scrollbar; -/// +/// /// // Customize colors -/// ResearchColorScheme.SetTechItemColors(ResearchAvailability.Researched, +/// ResearchColorScheme.SetTechItemColors(ResearchAvailability.Researched, /// background: Color.Green, border: Color.LightGreen); /// /// diff --git a/Content.Shared/_Goobstation/Research/SharedResearchSystemExtensions.cs b/Content.Shared/_Goobstation/Research/SharedResearchSystemExtensions.cs new file mode 100644 index 000000000000..89a7f332f0e6 --- /dev/null +++ b/Content.Shared/_Goobstation/Research/SharedResearchSystemExtensions.cs @@ -0,0 +1,26 @@ +using Content.Shared.Lathe; +using Content.Shared.Research.Components; +using Content.Shared.Research.Prototypes; +using Content.Shared.Research.Systems; +using Robust.Shared.Prototypes; +using System.Linq; + +namespace Content.Shared._Goobstation.Research; + +public static class SharedResearchSystemExtensions +{ + public static int GetTierCompletionPercentage(this SharedResearchSystem system, + TechnologyDatabaseComponent component, + TechDisciplinePrototype techDiscipline, + IPrototypeManager prototypeManager) + { + var allTech = prototypeManager.EnumeratePrototypes() + .Where(p => p.Discipline == techDiscipline.ID && !p.Hidden).ToList(); + + var percentage = (float) component.UnlockedTechnologies + .Where(x => prototypeManager.Index(x).Discipline == techDiscipline.ID) + .Count() / (float) allTech.Count * 100f; + + return (int) Math.Clamp(percentage, 0, 100); + } +} diff --git a/Resources/Locale/ru-RU/_Forge/research/techtree.ftl b/Resources/Locale/ru-RU/_Forge/research/techtree.ftl index ce7ffa03bb49..1e8ffcf6fd3d 100644 --- a/Resources/Locale/ru-RU/_Forge/research/techtree.ftl +++ b/Resources/Locale/ru-RU/_Forge/research/techtree.ftl @@ -14,7 +14,7 @@ forge-research-technology-shipammo57aphe = Каморные 57-ми миллим forge-research-technology-bombmerc = Неуправляемая 50-ти килограммовая бомба forge-research-technology-vesperamagazine = Разгон до 26 снарядов свободы forge-research-technology-vanykcartridge = Космическая 155мм ракетка -forge-research-technology-tovek-emphe = Взрывоопасный ЭМИ +forge-research-technology-tovek-emphe = Взрывоопасное ЭМИ forge-research-technology-tovek-aphe = Разрывная 250мм ракета # NFSD research diff --git a/Resources/Locale/ru-RU/_NF/research/technologies.ftl b/Resources/Locale/ru-RU/_NF/research/technologies.ftl index c9ff765609d6..a85b4f0e9cae 100644 --- a/Resources/Locale/ru-RU/_NF/research/technologies.ftl +++ b/Resources/Locale/ru-RU/_NF/research/technologies.ftl @@ -1,3 +1,17 @@ +# Forge-Change +forge-research-technology-development-strategy = Стратегия развития +forge-research-technology-engineering = Инженерное развитие +forge-research-technology-medical = Медицинские технологии +forge-research-technology-arsenal-mercenary = Гражданский арсенал +forge-research-technology-salvage = Утилизационная промышленность +nf-research-technology-salvage-goldprinter = Обработка металлов +nf-research-technology-hardsuits-experimental-industrial-maxims = Максимальный скафандр утилизатора +forge-research-technology-arsenal-science = Достижения науки +forge-research-technology-arsenal-service = Сервисные технологии +nf-research-technology-hardsuits-armored-advanced-aamr = Проект "Спектр" +nf-research-technology-hardsuits-armored-advanced-aamr2 = Проект "Галиус" +nf-research-technology-anomaly-harnessing-gen = Создание аномалий +# Forge-Change-End research-techology-advanced-personal-propulsion = Системы персонального перемещения research-technology-advanced-personal-propulsion = Системы персонального перемещения research-technology-rapid-construction = Ускоренное строительство @@ -34,7 +48,7 @@ nf-research-technology-advanced-atmospherics-tools = Контроль атмос nf-research-technology-advanced-belt = Способы хранения инструментов nf-research-technology-advanced-botanical-equipment = Продвинутое ботаническое оборудование nf-research-technology-advanced-botanical-storage = Блюспейс-хранилище для ботаники -nf-research-technology-advanced-charging = Продвинутые батареи +nf-research-technology-advanced-charging = Продвинутая передача энергии nf-research-technology-advanced-cleaning = Продвинутая уборка nf-research-technology-advanced-cleaning-cyborg = Механизированная уборка nf-research-technology-advanced-cyborg-tools = Продвинутые инструменты киборгов @@ -42,9 +56,9 @@ nf-research-technology-advanced-entertainment = Беспроводное тел nf-research-technology-advanced-food-service = Продвинутая обработка еды nf-research-technology-advanced-instruments = Электронные музыкальные инструменты nf-research-technology-advanced-parts = Продвинутые детали -nf-research-technology-advanced-personal-propulsion = Продвинутые персональные джетпаки +nf-research-technology-advanced-personal-propulsion = Пустотные джетпаки nf-research-technology-advanced-powercells = Продвинутые энергоячейки -nf-research-technology-advanced-riot-control = Продвинутые атмос-технологии +nf-research-technology-advanced-riot-control = Ручная защита nf-research-technology-advanced-robotics-equipment = Продвинутые роботизированные системы nf-research-technology-advanced-salvage-cyborg = Продвинутый киборг-утилизатор nf-research-technology-advanced-salvage-weapons = Массовые раскопки @@ -81,8 +95,8 @@ nf-research-technology-bluespace-time-manipulation = Блюспейс-манип nf-research-technology-bluespace-gas-tanks = Блюспейс-баллон nf-research-technology-bounty-hunting = Основы поддержания мира nf-research-technology-clowning-utilities = Утилиты клоунов -nf-research-technology-combat-propulsion = Боевые персональные джетпаки -nf-research-technology-critter-mechs = Х.А.М.Я.К. +nf-research-technology-combat-propulsion = Боевые джетпаки +nf-research-technology-critter-mechs = Мехи для животных nf-research-technology-deep-fryer = Фритюр nf-research-technology-deterrence = Технологии сдерживания nf-research-technology-excavation = Горное оборудование @@ -95,7 +109,7 @@ nf-research-technology-food-filtration = Фильтрация пищи nf-research-technology-food-service = Кулинарная автоматизация nf-research-technology-hardsuits-advanced = Продвинутые скафандры nf-research-technology-hardsuits-armored = Бронированные скафандры -nf-research-technology-hardsuits-armored-advanced = Продвинутые бронированные скафандры +nf-research-technology-hardsuits-armored-advanced = Продвинутый бронированный скафандр nf-research-technology-hardsuits-basic = Базовые скафандры nf-research-technology-hardsuits-engineering = Инженерные скафандры nf-research-technology-hardsuits-entertainment = Развлекательные скафандры @@ -116,20 +130,20 @@ nf-research-technology-magnets-tech = Управление магнитным п nf-research-technology-magnets-tech-advanced = Продвинутое управление магнитным полем nf-research-technology-magnets-tech-combat = Боевое управление магнитным полем nf-research-technology-mass-excavation = Массовые раскопки -nf-research-technology-matter-energy-conversion = Преобразование материи в энергию +nf-research-technology-matter-energy-conversion = Преобразование энергии в материю nf-research-technology-meat-manipulation = Манипуляция мясом nf-research-technology-mechanical-compression = Гидравлические системы сжатия nf-research-technology-mechanized-treatment = Механизированная обработка nf-research-technology-nonlethal-ammunition = Нелетальные боеприпасы nf-research-technology-particle-emission = Излучение частиц -nf-research-technology-personal-propulsion = Персональные джетпаки +nf-research-technology-personal-propulsion = Улучшенные джетпаки nf-research-technology-personal-storage-solutions = Персональные решения для хранения nf-research-technology-pistol-ammo-improved = Патроны для пистолета высокого давления nf-research-technology-portable-cleaning = Портативные жидкостные насосы nf-research-technology-portable-fission = Портативный ядерный синтез nf-research-technology-portable-particle-emission = Портативное излучение частиц nf-research-technology-power-generators = Урановые генераторы энергии -nf-research-technology-power-solar = Солнечная генерация энергии +nf-research-technology-power-solar = Альтернативная генерация энергии nf-research-technology-quantum-fiber-weaving = Квантовое плетение волокон nf-research-technology-rapid-construction = Быстрое строительство nf-research-technology-reinforced-jug = Улучшенные контейнеры для жидкостей @@ -153,7 +167,6 @@ nf-research-technology-special-means = Специальные средства nf-research-technology-super-parts = Супер-детали nf-research-technology-syringe-gun = Шприцемёт nf-research-technology-trash-power-generators = Мусорные генераторы -nf-research-technology-vim = В.И.М. nf-research-technology-wireless-audio-visual-communication = АВ телекоммуникации nf-research-technology-thermal-vision-goggles = Очки термального виденья nf-research-technology-nightvision-goggles = Очки ночного виденья diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_nf/entities/structures/decoration/banners.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_nf/entities/structures/decoration/banners.ftl index d1771e3146c5..1479d8787947 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_nf/entities/structures/decoration/banners.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_nf/entities/structures/decoration/banners.ftl @@ -10,3 +10,9 @@ ent-BannerTL = знамя TechnicLogistic .desc = Знамя передовой военно-производственной корпорации TechnicLogistic. ent-TL_flag = флаг TechnicLogistic .desc = Флаг передовой военно-производственной корпорации TechnicLogistic. +ent-BannerNSC = знамя Nexus Star Consortium + .desc = Знамя торогового альянся Nexus Star Consortium. Пахнет дорогой краской. +ent-NSCFlag = флаг Nexus Star Consortium + .desc = Флаг торогового альянся Nexus Star Consortium. Пахнет дорогой краской. +ent-TLFlag = флаг TechnicLogistic + .desc = Выглядит довольно странно... Судя по всему в конструкции присутствует тритий. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/_nf/entities/structures/machines/anomaly_equipment.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/_nf/entities/structures/machines/anomaly_equipment.ftl index b880e3c5233a..6baecc2f926d 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/_nf/entities/structures/machines/anomaly_equipment.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/_nf/entities/structures/machines/anomaly_equipment.ftl @@ -1,2 +1,2 @@ -ent-MachineMiniAnomalyGenerator = мини-генератор аномалий +ent-MachineMiniAnomalyGenerator = компактный генератор аномалий .desc = Компактное чудо аноманауки, способное породить хаос из ничего. diff --git a/Resources/Maps/_Forge/Shuttles/Salvage/nort.yml b/Resources/Maps/_Forge/Shuttles/Archive/Salvage/nort.yml similarity index 100% rename from Resources/Maps/_Forge/Shuttles/Salvage/nort.yml rename to Resources/Maps/_Forge/Shuttles/Archive/Salvage/nort.yml diff --git a/Resources/Maps/_Forge/Shuttles/Mercenary/owl.yml b/Resources/Maps/_Forge/Shuttles/Mercenary/owl.yml index c44c2d82af67..c36bcfbce41e 100644 --- a/Resources/Maps/_Forge/Shuttles/Mercenary/owl.yml +++ b/Resources/Maps/_Forge/Shuttles/Mercenary/owl.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Grid - engineVersion: 262.0.0 + engineVersion: 268.1.0 forkId: "" forkVersion: "" - time: 11/27/2025 14:06:36 - entityCount: 202 + time: 02/05/2026 10:51:35 + entityCount: 203 maps: [] grids: - 1573 @@ -212,11 +212,8 @@ entities: -1,1: 0: 207 1: 61696 - 0,2: - 1: 1 -1,2: 0: 12 - 1: 2 -2,0: 1: 136 -2,1: @@ -930,6 +927,23 @@ entities: - type: DeviceNetwork deviceLists: - 1674 +- proto: ForgeAmmoDrum20mmBase + entities: + - uid: 34 + components: + - type: Transform + pos: -2.6417084,4.7434607 + parent: 1573 + - uid: 35 + components: + - type: Transform + pos: -2.3012066,4.6180124 + parent: 1573 + - uid: 36 + components: + - type: Transform + pos: -2.552103,4.474643 + parent: 1573 - proto: FuelPlasma entities: - uid: 1694 @@ -1045,23 +1059,6 @@ entities: - type: Transform pos: -2.5,1.5 parent: 1573 -- proto: ForgeAmmoDrum20mmBase - entities: - - uid: 34 - components: - - type: Transform - pos: -2.6417084,4.7434607 - parent: 1573 - - uid: 35 - components: - - type: Transform - pos: -2.3012066,4.6180124 - parent: 1573 - - uid: 36 - components: - - type: Transform - pos: -2.552103,4.474643 - parent: 1573 - proto: NFHolopadShip entities: - uid: 1766 @@ -1535,6 +1532,13 @@ entities: - type: Transform pos: -4.5,5.5 parent: 1573 +- proto: WarpPoint + entities: + - uid: 37 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1573 - proto: WeaponTurretL85Autocannon entities: - uid: 32 diff --git a/Resources/Maps/_Forge/Shuttles/Salvage/bug.yml b/Resources/Maps/_Forge/Shuttles/Salvage/bug.yml index 98edb29a34ae..341b56f3954a 100644 --- a/Resources/Maps/_Forge/Shuttles/Salvage/bug.yml +++ b/Resources/Maps/_Forge/Shuttles/Salvage/bug.yml @@ -1,45 +1,52 @@ meta: format: 7 category: Grid - engineVersion: 262.0.0 + engineVersion: 268.1.0 forkId: "" forkVersion: "" - time: 08/09/2025 18:34:51 - entityCount: 170 + time: 01/16/2026 05:08:11 + entityCount: 300 maps: [] grids: -- 975 +- 1246 orphans: -- 975 +- 1246 nullspace: [] tilemap: 0: Space + 7: FloorDarkOffset 2: FloorElevatorShaft - 7: FloorMetalDiamond + 6: FloorGlass + 8: FloorMetalDiamond + 5: FloorMiningDark 4: FloorMiningLight - 6: FloorRGlass - 5: FloorWebTile 1: Lattice 3: Plating entities: - proto: "" entities: - - uid: 975 + - uid: 1246 components: - type: MetaData name: grid - type: Transform - pos: -5.089824,-8.173861 + pos: -4.465271,-2.926313 parent: invalid - type: MapGrid chunks: 0,0: ind: 0,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAABAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAEAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAADAAAAAAAAAQAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAwAAAAAAAAQAAAAAAAAEAAAAAAAAAwAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAGAAAAAAAAAwAAAAAAAAUAAAAAAAADAAAAAAAABQAAAAAAAAMAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAADAAAAAAAAAwAAAAAAAAcAAAAAAAAHAAAAAAAAAwAAAAAAAAMAAAAAAAAEAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAABQAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAAAwAAAAAAAAgAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAwAAAAAAAAgAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAAAHAAAAAAAAAwAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAQAAAAAAAAMAAAAAAAAIAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABwAAAAAAAAMAAAAAAAABAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAMAAAAAAAAIAAAAAAAABwAAAAAAAAUAAAAAAAADAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAADAAAAAAAACAAAAAAAAAcAAAAAAAAFAAAAAAAAAwAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAMAAAAAAAACAAAAAAAAAwAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== version: 7 - type: Broadphase - type: Physics bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Fixtures @@ -57,121 +64,126 @@ entities: version: 2 nodes: - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 1: 4,6 - 2: 4,7 - 3: 4,8 - 4: 4,9 - 5: 5,9 - 6: 5,7 - 7: 5,6 - 8: 5,8 - 9: 5,9 - 10: 4,10 - 11: 5,10 - 12: 5,3 - 13: 4,3 - 14: 4,4 - 15: 5,4 - - node: - color: '#D58C18F2' - id: GrayConcreteTrimCornerNe + color: '#FA750096' + id: Bot decals: - 29: 5,10 + 10: 6,0 + 11: 7,1 - node: - color: '#D58C18F2' - id: GrayConcreteTrimCornerNw + color: '#52B4E996' + id: BotGreyscale decals: - 28: 4,10 - 31: 4,4 + 4: 3,5 - node: - color: '#D58C18F2' - id: GrayConcreteTrimCornerSw + color: '#DE3A3A96' + id: BotGreyscale decals: - 23: 4,6 + 5: 3,4 - node: - color: '#D58C18F2' - id: GrayConcreteTrimInnerNw + color: '#FFFFFFFF' + id: BotGreyscale decals: - 35: 5,4 + 2: 4,7 + 3: 4,8 + 25: 7,3 + 26: 4,1 + 27: 3,1 - node: - color: '#D58C18F2' - id: GrayConcreteTrimInnerSw + color: '#FFFFFFFF' + id: BrickTileDarkEndE decals: - 22: 5,6 + 24: 4,1 - node: - color: '#D58C18F2' - id: GrayConcreteTrimLineE + color: '#FFFFFFFF' + id: BrickTileDarkEndN decals: - 24: 5,6 - 25: 5,7 - 26: 5,8 - 27: 5,9 - 33: 5,3 - 34: 5,4 + 14: 7,5 + 19: 5,8 - node: - color: '#D58C18F2' - id: GrayConcreteTrimLineW + color: '#FFFFFFFF' + id: BrickTileDarkEndS decals: - 19: 4,9 - 20: 4,8 - 21: 4,7 - 30: 5,5 - 32: 4,3 + 15: 7,4 + 18: 5,7 - node: - color: '#D58C18F2' - id: LoadingAreaGreyscale + color: '#FFFFFFFF' + id: BrickTileDarkEndW decals: - 36: 5,3 - 37: 4,3 + 23: 3,1 - node: - color: '#D58C18F2' - id: WarnCornerNE + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy decals: - 18: 3,7 + 28: 3,1 + 29: 4,1 + 31: 7,3 + 32: 7,3 + 33: 7,4 + 34: 7,5 + 35: 5,7 + 36: 5,8 + 37: 1,2 + 38: 1,2 + 39: 1,2 + 40: 1,2 - node: - color: '#D58C18F2' - id: WarnLineGreyscaleW + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile decals: - 16: 6,7 - 17: 6,8 + 30: 4,1 - node: - color: '#D58C18F2' - id: radiation + color: '#FA750096' + id: OffsetOverlay decals: - 38: 6,4 - 39: 3,4 + 12: 7,4 + 13: 7,5 + 16: 5,7 + 17: 5,8 + 21: 3,1 + 22: 4,1 - type: GridAtmosphere version: 2 data: tiles: 0,0: - 0: 16896 + 0: 20 + 1: 33408 0,1: - 0: 578 - 1: 32776 + 0: 529 + 2: 16416 + 1: 136 0,2: - 0: 32832 - 1: 8 - 1,0: - 1: 13104 + 0: 4 + 0,-1: 0: 32768 + 1,0: + 1: 54519 1,1: - 1: 29479 - 0: 128 + 1: 29919 1,2: - 1: 823 - 0: 16512 + 1: 119 + 2: 20480 + 0,3: + 0: 8 + 1,-1: + 1: 8192 + 0: 32768 2,0: - 0: 256 + 0: 1 + 1: 4096 + 2: 26208 2,1: - 0: 257 + 2: 4128 + 0: 576 + 2,2: + 0: 1 + 1,3: + 0: 8 uniqueMixes: - volume: 2500 - immutable: True + temperature: 293.15 moles: - 0 - 0 @@ -200,1080 +212,2066 @@ entities: - 0 - 0 - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - type: BecomesStation id: Bug -- proto: AirCanister + - type: ImplicitRoof +- proto: ADTSalvageAirlock entities: - - uid: 26 + - uid: 260 components: - type: Transform - anchored: True - pos: 4.5,6.5 - parent: 975 - - type: Physics - bodyType: Static -- proto: AirlockExternal + rot: -1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1246 +- proto: ADTSalvageAirlockGlass entities: - - uid: 4 + - uid: 258 components: - type: Transform - pos: 6.5,4.5 - parent: 975 - - uid: 5 + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1246 + - uid: 259 components: - type: Transform - pos: 3.5,4.5 - parent: 975 -- proto: AirlockGlassShuttleSyndicate + rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1246 +- proto: AirAlarm entities: - - uid: 1030 - components: - - type: Transform - pos: 4.5,1.5 - parent: 975 - - uid: 1031 + - uid: 257 components: - type: Transform - pos: 5.5,1.5 - parent: 975 -- proto: AirlockMiningGlass + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1246 + - type: DeviceList + devices: + - 173 + - 168 + - 174 + - 170 + - 167 + - 175 + - 176 + - 169 + - 128 + - 127 + - 126 +- proto: AirlockExternal entities: - - uid: 6 + - uid: 122 components: - type: Transform - pos: 5.5,5.5 - parent: 975 -- proto: APCBasic - entities: - - uid: 22 + pos: 0.5,4.5 + parent: 1246 + - uid: 125 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,9.5 - parent: 975 -- proto: AtmosDeviceFanDirectional + pos: 8.5,3.5 + parent: 1246 +- proto: AirlockShuttleSyndicate entities: - - uid: 976 + - uid: 129 components: - type: Transform - pos: 4.5,1.5 - parent: 975 - - uid: 996 + pos: 5.5,-0.5 + parent: 1246 +- proto: APCBasic + entities: + - uid: 210 components: - type: Transform - pos: 5.5,1.5 - parent: 975 - - uid: 1021 + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1246 + - uid: 211 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,4.5 - parent: 975 - - uid: 1022 + pos: 7.5,7.5 + parent: 1246 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 123 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1246 + - uid: 124 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,4.5 - parent: 975 + pos: 8.5,3.5 + parent: 1246 - proto: AtmosFixBlockerMarker entities: - - uid: 1032 + - uid: 95 components: - type: Transform - pos: 1.5,2.5 - parent: 975 - - uid: 1033 + pos: 0.5,1.5 + parent: 1246 + - uid: 96 components: - type: Transform - pos: 1.5,4.5 - parent: 975 - - uid: 1034 + pos: 0.5,4.5 + parent: 1246 + - uid: 97 components: - type: Transform - pos: 2.5,5.5 - parent: 975 - - uid: 1035 + pos: 1.5,5.5 + parent: 1246 + - uid: 98 components: - type: Transform - pos: 2.5,3.5 - parent: 975 - - uid: 1036 + pos: 0.5,5.5 + parent: 1246 + - uid: 99 components: - type: Transform pos: 1.5,6.5 - parent: 975 - - uid: 1037 + parent: 1246 + - uid: 100 components: - type: Transform - pos: 7.5,3.5 - parent: 975 - - uid: 1038 + pos: 2.5,7.5 + parent: 1246 + - uid: 101 components: - type: Transform - pos: 8.5,2.5 - parent: 975 - - uid: 1039 + pos: 2.5,8.5 + parent: 1246 + - uid: 102 components: - type: Transform - pos: 8.5,4.5 - parent: 975 - - uid: 1040 + pos: 4.5,11.5 + parent: 1246 + - uid: 103 components: - type: Transform - pos: 7.5,5.5 - parent: 975 - - uid: 1041 + pos: 3.5,12.5 + parent: 1246 + - uid: 104 components: - type: Transform - pos: 8.5,6.5 - parent: 975 - - uid: 1042 + pos: 6.5,11.5 + parent: 1246 + - uid: 105 components: - type: Transform - pos: 2.5,9.5 - parent: 975 - - uid: 1043 + pos: 7.5,12.5 + parent: 1246 + - uid: 106 components: - type: Transform - pos: 3.5,11.5 - parent: 975 - - uid: 1044 + pos: 8.5,8.5 + parent: 1246 + - uid: 107 components: - type: Transform - pos: 6.5,11.5 - parent: 975 - - uid: 1045 + pos: 8.5,7.5 + parent: 1246 + - uid: 108 components: - type: Transform - pos: 7.5,9.5 - parent: 975 -- proto: BlastDoorOpen - entities: - - uid: 73 + pos: 9.5,6.5 + parent: 1246 + - uid: 109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,10.5 - parent: 975 - - uid: 74 + pos: 10.5,5.5 + parent: 1246 + - uid: 110 components: - type: Transform - pos: 5.5,11.5 - parent: 975 - - uid: 75 + pos: 9.5,5.5 + parent: 1246 + - uid: 111 components: - type: Transform - pos: 4.5,11.5 - parent: 975 - - uid: 76 + pos: 10.5,3.5 + parent: 1246 + - uid: 112 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,10.5 - parent: 975 -- proto: ButtonFrameCaution - entities: - - uid: 71 + pos: 10.5,2.5 + parent: 1246 + - uid: 113 components: - type: Transform - pos: 5.5,10.5 - parent: 975 -- proto: CableApcExtension - entities: - - uid: 53 + pos: 10.5,1.5 + parent: 1246 + - uid: 114 components: - type: Transform - pos: 3.5,9.5 - parent: 975 - - uid: 54 + pos: 9.5,3.5 + parent: 1246 + - uid: 115 components: - type: Transform - pos: 4.5,9.5 - parent: 975 - - uid: 55 + pos: 9.5,2.5 + parent: 1246 + - uid: 116 components: - type: Transform - pos: 5.5,9.5 - parent: 975 - - uid: 56 + pos: 9.5,1.5 + parent: 1246 + - uid: 117 components: - type: Transform - pos: 6.5,9.5 - parent: 975 - - uid: 57 + pos: 8.5,0.5 + parent: 1246 + - uid: 118 components: - type: Transform - pos: 6.5,7.5 - parent: 975 - - uid: 58 + pos: 7.5,-0.5 + parent: 1246 + - uid: 119 components: - type: Transform - pos: 6.5,6.5 - parent: 975 - - uid: 59 + pos: 3.5,-0.5 + parent: 1246 + - uid: 120 components: - type: Transform - pos: 6.5,5.5 - parent: 975 - - uid: 60 + pos: 2.5,0.5 + parent: 1246 +- proto: BlastDoor + entities: + - uid: 271 components: - type: Transform - pos: 6.5,4.5 - parent: 975 - - uid: 61 + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1246 +- proto: BlastDoorOpen + entities: + - uid: 274 components: - type: Transform - pos: 6.5,3.5 - parent: 975 - - uid: 62 + rot: 1.5707963267948966 rad + pos: 3.5,9.5 + parent: 1246 + - uid: 275 components: - type: Transform - pos: 6.5,2.5 - parent: 975 - - uid: 63 + pos: 4.5,10.5 + parent: 1246 + - uid: 276 components: - type: Transform - pos: 6.5,8.5 - parent: 975 - - uid: 64 + pos: 5.5,10.5 + parent: 1246 + - uid: 277 components: - type: Transform - pos: 3.5,8.5 - parent: 975 - - uid: 65 + pos: 6.5,10.5 + parent: 1246 + - uid: 278 components: - type: Transform - pos: 3.5,7.5 - parent: 975 - - uid: 66 + rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 1246 +- proto: ButtonFrameCaution + entities: + - uid: 265 components: - type: Transform - pos: 3.5,6.5 - parent: 975 - - uid: 67 + pos: 5.5,2.5 + parent: 1246 + - uid: 266 components: - type: Transform - pos: 3.5,5.5 - parent: 975 - - uid: 68 + rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1246 +- proto: CableApcExtension + entities: + - uid: 212 components: - type: Transform - pos: 3.5,4.5 - parent: 975 - - uid: 69 + pos: 3.5,0.5 + parent: 1246 + - uid: 213 components: - type: Transform - pos: 3.5,3.5 - parent: 975 - - uid: 70 + pos: 4.5,0.5 + parent: 1246 + - uid: 214 components: - type: Transform - pos: 3.5,2.5 - parent: 975 -- proto: CableHV - entities: - - uid: 47 + pos: 5.5,0.5 + parent: 1246 + - uid: 215 components: - type: Transform - pos: 6.5,8.5 - parent: 975 - - uid: 48 + pos: 5.5,1.5 + parent: 1246 + - uid: 216 components: - type: Transform - pos: 6.5,9.5 - parent: 975 -- proto: CableMV - entities: - - uid: 49 + pos: 6.5,1.5 + parent: 1246 + - uid: 217 components: - type: Transform - pos: 6.5,9.5 - parent: 975 - - uid: 50 + pos: 7.5,1.5 + parent: 1246 + - uid: 218 components: - type: Transform - pos: 5.5,9.5 - parent: 975 - - uid: 51 + pos: 8.5,1.5 + parent: 1246 + - uid: 219 components: - type: Transform - pos: 4.5,9.5 - parent: 975 - - uid: 52 + pos: 7.5,7.5 + parent: 1246 + - uid: 220 components: - type: Transform - pos: 3.5,9.5 - parent: 975 -- proto: Catwalk - entities: - - uid: 78 + pos: 6.5,7.5 + parent: 1246 + - uid: 221 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1246 + - uid: 222 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,8.5 - parent: 975 - - uid: 1024 + parent: 1246 + - uid: 223 components: - type: Transform - pos: 1.5,4.5 - parent: 975 - - uid: 1025 + pos: 5.5,9.5 + parent: 1246 + - uid: 224 components: - type: Transform - pos: 2.5,5.5 - parent: 975 - - uid: 1026 + pos: 4.5,7.5 + parent: 1246 + - uid: 225 components: - type: Transform - pos: 2.5,3.5 - parent: 975 - - uid: 1027 + pos: 6.5,2.5 + parent: 1246 + - uid: 226 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1246 + - uid: 227 components: - type: Transform pos: 7.5,3.5 - parent: 975 - - uid: 1028 + parent: 1246 + - uid: 228 components: - type: Transform - pos: 7.5,5.5 - parent: 975 - - uid: 1029 + pos: 8.5,3.5 + parent: 1246 + - uid: 229 components: - type: Transform - pos: 8.5,4.5 - parent: 975 -- proto: ChairPilotSeat - entities: - - uid: 32 + pos: 9.5,3.5 + parent: 1246 + - uid: 230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,9.5 - parent: 975 -- proto: ComputerTabletopShuttle - entities: - - uid: 3 + pos: 10.5,3.5 + parent: 1246 + - uid: 231 components: - type: Transform - pos: 4.5,10.5 - parent: 975 -- proto: ComputerTabletopStationRecords - entities: - - uid: 7 + pos: 10.5,2.5 + parent: 1246 + - uid: 232 components: - type: Transform - pos: 5.5,10.5 - parent: 975 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 84 + pos: 10.5,1.5 + parent: 1246 + - uid: 233 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,5.5 - parent: 975 -- proto: EmergencyLight - entities: - - uid: 93 + pos: 6.5,6.5 + parent: 1246 + - uid: 234 components: - type: Transform - pos: 6.5,8.5 - parent: 975 - - uid: 94 + pos: 6.5,5.5 + parent: 1246 + - uid: 235 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,3.5 - parent: 975 - - uid: 95 + pos: 5.5,5.5 + parent: 1246 + - uid: 236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,6.5 - parent: 975 - - uid: 96 + pos: 5.5,4.5 + parent: 1246 + - uid: 237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,8.5 - parent: 975 -- proto: FaxMachineShip - entities: - - uid: 20 + pos: 4.5,4.5 + parent: 1246 + - uid: 238 components: - type: Transform - pos: 3.5,7.5 - parent: 975 -- proto: GasPassiveVent - entities: - - uid: 29 + pos: 3.5,4.5 + parent: 1246 + - uid: 239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,5.5 - parent: 975 - - type: AtmosPipeColor - color: '#FF0000FF' + pos: 3.5,1.5 + parent: 1246 + - uid: 240 + components: + - type: Transform + pos: 2.5,1.5 + parent: 1246 + - uid: 241 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1246 + - uid: 242 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1246 + - uid: 243 + components: + - type: Transform + pos: 7.5,5.5 + parent: 1246 +- proto: CableHV + entities: + - uid: 192 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1246 + - uid: 193 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1246 +- proto: CableMV + entities: + - uid: 194 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1246 + - uid: 195 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1246 + - uid: 196 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1246 + - uid: 197 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1246 + - uid: 198 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1246 + - uid: 199 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1246 + - uid: 200 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1246 + - uid: 201 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1246 + - uid: 202 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1246 + - uid: 203 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1246 + - uid: 204 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1246 + - uid: 205 + components: + - type: Transform + pos: 6.5,1.5 + parent: 1246 + - uid: 206 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1246 + - uid: 207 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1246 + - uid: 208 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1246 + - uid: 209 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1246 +- proto: CarpetPurple + entities: + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 1246 + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 1246 + - uid: 244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,9.5 + parent: 1246 + - uid: 245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1246 + - uid: 255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 1246 +- proto: Catwalk + entities: + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1246 + - uid: 26 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1246 + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,2.5 + parent: 1246 + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 1246 + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 1246 + - uid: 44 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1246 + - uid: 45 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1246 + - uid: 46 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 1246 + - uid: 47 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,2.5 + parent: 1246 + - uid: 57 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 1246 + - uid: 69 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,3.5 + parent: 1246 + - uid: 71 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1246 + - uid: 72 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1246 + - uid: 75 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1246 + - uid: 79 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1246 + - uid: 81 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1246 + - uid: 82 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1246 + - uid: 84 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1246 + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1246 + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 1246 + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1246 + - uid: 269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 1246 + - uid: 270 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 1246 +- proto: CatwalkDarkTile + entities: + - uid: 121 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1246 +- proto: ChairPilotSeat + entities: + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 1246 +- proto: ChemicalBarrelBeer + entities: + - uid: 154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1246 +- proto: ComputerTabletopShuttle + entities: + - uid: 150 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1246 +- proto: ComputerTabletopStationRecords + entities: + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1246 +- proto: ConveyorBelt + entities: + - uid: 39 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1246 + - uid: 41 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,1.5 + parent: 1246 +- proto: CrateEngineeringSecure + entities: + - uid: 290 + components: + - type: Transform + pos: 3.5,1.5 + parent: 1246 + - uid: 291 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1246 +- proto: CratePlasma + entities: + - uid: 140 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1246 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + 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: + - 141 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: DefibrillatorCabinetFilled + entities: + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1246 +- proto: EmergencyLight + entities: + - uid: 246 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1246 + - uid: 247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1246 + - uid: 279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1246 +- proto: FaxMachineShip + entities: + - uid: 148 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1246 +- proto: FirelockGlass + entities: + - uid: 126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 1246 + - type: DeviceNetwork + deviceLists: + - 257 + - uid: 127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1246 + - type: DeviceNetwork + deviceLists: + - 257 + - uid: 128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 1246 + - type: DeviceNetwork + deviceLists: + - 257 +- proto: FuelPlasma + entities: + - uid: 141 + components: + - type: Transform + parent: 140 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GasMixerOnFlipped + entities: + - uid: 157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 1246 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPassiveVent + entities: + - uid: 191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 1246 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' - proto: GasPipeBend entities: - - uid: 35 + - uid: 158 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1246 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeBendAlt1 + entities: + - uid: 180 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1246 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 1246 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 182 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1246 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 1246 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1246 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBendAlt2 + entities: + - uid: 172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1246 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeManifold + entities: + - uid: 160 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,4.5 + parent: 1246 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 1246 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 1246 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1246 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1246 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1246 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraightAlt1 + entities: + - uid: 178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 1246 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 183 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1246 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 185 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1246 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1246 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1246 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1246 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraightAlt2 + entities: + - uid: 171 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,7.5 - parent: 975 + pos: 4.5,4.5 + parent: 1246 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 36 + color: '#0055CCFF' +- proto: GasPipeTJunction + entities: + - uid: 159 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,7.5 - parent: 975 + pos: 6.5,4.5 + parent: 1246 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 37 + color: '#0055CCFF' + - uid: 161 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,7.5 - parent: 975 + pos: 6.5,5.5 + parent: 1246 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 40 + color: '#0055CCFF' +- proto: GasPipeTJunctionAlt1 + entities: + - uid: 177 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 975 + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 1246 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 41 + color: '#990000FF' + - uid: 179 components: - type: Transform - pos: 4.5,5.5 - parent: 975 + rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 1246 - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeStraight - entities: - - uid: 38 + color: '#990000FF' + - uid: 184 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,6.5 - parent: 975 + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1246 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 39 + color: '#990000FF' +- proto: GasPort + entities: + - uid: 155 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,4.5 - parent: 975 + rot: 1.5707963267948966 rad + pos: 3.5,4.5 + parent: 1246 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 45 + color: '#0055CCFF' + - uid: 156 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,6.5 - parent: 975 + rot: 1.5707963267948966 rad + pos: 3.5,5.5 + parent: 1246 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 46 + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 167 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,5.5 - parent: 975 + pos: 3.5,3.5 + parent: 1246 + - type: DeviceNetwork + deviceLists: + - 257 + - type: AtmosPipeLayers + pipeLayer: Tertiary - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasPipeTJunction - entities: - - uid: 34 + color: '#0055CCFF' + - uid: 168 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,5.5 - parent: 975 + rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1246 + - type: DeviceNetwork + deviceLists: + - 257 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 44 + color: '#0055CCFF' + - uid: 169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,7.5 - parent: 975 + pos: 6.5,8.5 + parent: 1246 + - type: DeviceNetwork + deviceLists: + - 257 - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasPort - entities: - - uid: 17 + color: '#0055CCFF' + - uid: 170 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,6.5 - parent: 975 + pos: 6.5,0.5 + parent: 1246 + - type: DeviceNetwork + deviceLists: + - 257 - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasVentPump + color: '#0055CCFF' +- proto: GasVentScrubber entities: - - uid: 27 + - uid: 173 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,4.5 - parent: 975 + rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1246 + - type: DeviceNetwork + deviceLists: + - 257 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 28 + color: '#990000FF' + - uid: 174 components: - type: Transform - pos: 5.5,8.5 - parent: 975 + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1246 + - type: DeviceNetwork + deviceLists: + - 257 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasVentScrubber - entities: - - uid: 30 + color: '#990000FF' + - uid: 175 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,3.5 - parent: 975 + rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 1246 + - type: DeviceNetwork + deviceLists: + - 257 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 31 + color: '#990000FF' + - uid: 176 components: - type: Transform + rot: 1.5707963267948966 rad pos: 4.5,8.5 - parent: 975 + parent: 1246 + - type: DeviceNetwork + deviceLists: + - 257 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' + color: '#990000FF' - proto: GravityGeneratorMini entities: - - uid: 14 + - uid: 138 components: - type: Transform - pos: 6.5,7.5 - parent: 975 + pos: 4.5,7.5 + parent: 1246 - proto: Grille entities: - - uid: 1023 + - uid: 68 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,10.5 - parent: 975 - - uid: 1048 + pos: 6.5,10.5 + parent: 1246 + - uid: 70 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,11.5 - parent: 975 - - uid: 1049 + pos: 7.5,9.5 + parent: 1246 + - uid: 85 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,11.5 - parent: 975 - - uid: 1050 + pos: 4.5,10.5 + parent: 1246 + - uid: 86 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,10.5 - parent: 975 -- proto: GrilleDiagonal - entities: - - uid: 1046 + pos: 3.5,9.5 + parent: 1246 + - uid: 91 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,11.5 - parent: 975 - - uid: 1047 + pos: 5.5,10.5 + parent: 1246 +- proto: Gyroscope + entities: + - uid: 143 components: - type: Transform - pos: 3.5,11.5 - parent: 975 + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 1246 - proto: LockerWallEVAColorSalvageFilled entities: - - uid: 19 + - uid: 248 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,6.5 - parent: 975 -- proto: LockerWallMaterialsFuelPlasmaFilled - entities: - - uid: 8 + pos: 8.5,4.5 + parent: 1246 + - uid: 249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,8.5 - parent: 975 + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1246 - proto: MiningWindow entities: - - uid: 981 + - uid: 7 components: - type: Transform - pos: 3.5,10.5 - parent: 975 - - uid: 984 + pos: 5.5,10.5 + parent: 1246 + - uid: 8 components: - type: Transform pos: 6.5,10.5 - parent: 975 - - uid: 1017 + parent: 1246 + - uid: 53 components: - type: Transform - pos: 4.5,11.5 - parent: 975 - - uid: 1018 + pos: 4.5,10.5 + parent: 1246 + - uid: 73 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1246 + - uid: 93 components: - type: Transform - pos: 5.5,11.5 - parent: 975 -- proto: MiningWindowDiagonal + pos: 3.5,9.5 + parent: 1246 +- proto: NFHolopadShip entities: - - uid: 1015 + - uid: 256 components: - type: Transform - pos: 3.5,11.5 - parent: 975 - - uid: 1016 + pos: 5.5,7.5 + parent: 1246 +- proto: NFMagnetBoxOre + entities: + - uid: 42 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,11.5 - parent: 975 -- proto: NFHolopadShip + pos: 7.5,1.5 + parent: 1246 +- proto: NitrogenCanister entities: - - uid: 25 + - uid: 145 components: - type: Transform - pos: 4.5,7.5 - parent: 975 -- proto: NFMagnetBoxOre + pos: 3.5,4.5 + parent: 1246 +- proto: OreProcessor entities: - - uid: 9 + - uid: 133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,4.5 - parent: 975 + pos: 6.5,0.5 + parent: 1246 +- proto: OxygenCanister + entities: + - uid: 146 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1246 +- proto: PaperBin5 + entities: + - uid: 151 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1246 +- proto: Pickaxe + entities: + - uid: 253 + components: + - type: Transform + parent: 251 + - type: Physics + canCollide: False + - uid: 254 + components: + - type: Transform + parent: 251 + - type: Physics + canCollide: False +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 38 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1246 +- proto: PlushieMoffRandom + entities: + - uid: 153 + components: + - type: Transform + pos: 1.6533532,2.7494602 + parent: 1246 - proto: PortableGeneratorPacmanShuttle entities: - - uid: 15 + - uid: 139 components: - type: Transform - pos: 6.5,8.5 - parent: 975 -- proto: Poweredlight + pos: 4.5,3.5 + parent: 1246 +- proto: PosterBroken entities: - - uid: 86 + - uid: 298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,7.5 - parent: 975 - - uid: 87 + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1246 +- proto: PosterContrabandMoth + entities: + - uid: 152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,7.5 - parent: 975 - - uid: 88 + pos: 2.5,2.5 + parent: 1246 +- proto: Poweredlight + entities: + - uid: 280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,2.5 - parent: 975 - - uid: 89 + rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 1246 + - uid: 281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,2.5 - parent: 975 + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1246 + - uid: 282 + components: + - type: Transform + pos: 4.5,1.5 + parent: 1246 - proto: PoweredlightOrange entities: - - uid: 90 + - uid: 283 components: - type: Transform - pos: 2.5,5.5 - parent: 975 - - uid: 91 + pos: 4.5,5.5 + parent: 1246 + - uid: 284 components: - type: Transform - pos: 7.5,5.5 - parent: 975 - - uid: 92 + pos: 10.5,3.5 + parent: 1246 + - uid: 285 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1246 + - uid: 286 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,9.5 - parent: 975 + pos: 6.5,11.5 + parent: 1246 + - uid: 287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,11.5 + parent: 1246 + - uid: 288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 1246 + - uid: 289 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 1246 - proto: RandomPosterAny entities: - - uid: 16 + - uid: 292 components: - type: Transform - pos: 6.5,3.5 - parent: 975 - - uid: 23 + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 1246 + - uid: 293 components: - type: Transform - pos: 3.5,6.5 - parent: 975 - - uid: 33 + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1246 + - uid: 294 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,7.5 - parent: 975 + pos: 7.5,0.5 + parent: 1246 + - uid: 295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,4.5 + parent: 1246 + - uid: 296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 1246 + - uid: 297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,8.5 + parent: 1246 - proto: SignalButtonWindows entities: - - uid: 72 + - uid: 267 components: - type: Transform - pos: 5.5,10.5 - parent: 975 + pos: 5.5,2.5 + parent: 1246 + - type: DeviceLinkSource + linkedPorts: + 271: + - - Pressed + - Toggle + - uid: 268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1246 + - type: DeviceLinkSource + linkedPorts: + 271: + - - Pressed + - Toggle + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 1246 - type: DeviceLinkSource linkedPorts: - 76: + 278: + - - Pressed + - Toggle + 277: - - Pressed - Toggle - 75: + 276: - - Pressed - Toggle - 74: + 275: - - Pressed - Toggle - 73: + 274: - - Pressed - Toggle - proto: SignNTMine entities: - - uid: 42 + - uid: 261 components: - type: Transform - pos: 6.5,5.5 - parent: 975 - - uid: 43 + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1246 + - uid: 262 components: - type: Transform - pos: 3.5,5.5 - parent: 975 -- proto: SignSecureMed - entities: - - uid: 79 + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1246 + - uid: 263 components: - type: Transform - pos: 3.5,3.5 - parent: 975 -- proto: SmallGyroscope + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 1246 + - uid: 264 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,3.5 + parent: 1246 +- proto: SpiderWeb entities: - - uid: 18 + - uid: 130 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 975 -- proto: SpawnPointContractor + pos: 1.5,2.5 + parent: 1246 +- proto: SteelBench entities: - - uid: 82 + - uid: 131 components: - type: Transform - pos: 5.5,8.5 - parent: 975 -- proto: SpawnPointLatejoin + rot: -1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1246 + - uid: 132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1246 +- proto: StructureMeleeWeaponRackWallmountedSalvage entities: - - uid: 85 + - uid: 251 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,7.5 - parent: 975 -- proto: SpawnPointMercenary + pos: 7.5,6.5 + parent: 1246 + - type: ContainerContainer + containers: + weapon1: !type:ContainerSlot + showEnts: False + occludes: True + ent: 252 + weapon2: !type:ContainerSlot + showEnts: False + occludes: True + ent: 253 + weapon3: !type:ContainerSlot + showEnts: False + occludes: True + ent: 254 + weapon4: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon5: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: SubstationBasic entities: - - uid: 81 + - uid: 142 components: - type: Transform - pos: 4.5,8.5 - parent: 975 -- proto: SpawnPointPilot + pos: 3.5,3.5 + parent: 1246 +- proto: TableCounterMetal entities: - - uid: 83 + - uid: 2 components: - type: Transform - pos: 4.5,7.5 - parent: 975 -- proto: StairDark + rot: -1.5707963267948966 rad + pos: 9.5,1.5 + parent: 1246 +- proto: TableReinforced entities: - - uid: 10 + - uid: 134 components: - type: Transform - pos: 4.5,2.5 - parent: 975 - - uid: 11 + pos: 5.5,9.5 + parent: 1246 + - uid: 135 components: - type: Transform - pos: 5.5,2.5 - parent: 975 -- proto: SubstationWallBasic - entities: - - uid: 21 + pos: 6.5,9.5 + parent: 1246 + - uid: 136 components: - type: Transform - pos: 6.5,9.5 - parent: 975 -- proto: TableReinforced + pos: 6.5,8.5 + parent: 1246 + - uid: 137 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1246 +- proto: Thruster entities: - - uid: 13 + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 1246 + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 1246 + - uid: 49 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 1246 + - uid: 58 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,7.5 - parent: 975 - - uid: 2266 + pos: 2.5,7.5 + parent: 1246 + - uid: 65 components: - type: Transform - pos: 4.5,10.5 - parent: 975 - - uid: 2267 + pos: 4.5,11.5 + parent: 1246 + - uid: 66 components: - type: Transform - pos: 5.5,10.5 - parent: 975 -- proto: Thruster + pos: 6.5,11.5 + parent: 1246 +- proto: TwoWayLever entities: - - uid: 1 + - uid: 272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,4.5 - parent: 975 - - uid: 2 + pos: 10.5,3.5 + parent: 1246 + - type: DeviceLinkSource + linkedPorts: + 39: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 41: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off +- proto: WallMining + entities: + - uid: 1 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 975 - - uid: 980 + pos: 3.5,8.5 + parent: 1246 + - uid: 3 components: - type: Transform - pos: 2.5,3.5 - parent: 975 - - uid: 988 + pos: 7.5,10.5 + parent: 1246 + - uid: 4 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,5.5 - parent: 975 - - uid: 995 + pos: 3.5,10.5 + parent: 1246 + - uid: 5 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,5.5 - parent: 975 - - uid: 1011 + pos: 7.5,11.5 + parent: 1246 + - uid: 9 components: - type: Transform - pos: 7.5,3.5 - parent: 975 -- proto: WallMining - entities: - - uid: 977 + pos: 3.5,11.5 + parent: 1246 + - uid: 11 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,1.5 - parent: 975 - - uid: 978 + pos: 2.5,6.5 + parent: 1246 + - uid: 12 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 1246 + - uid: 13 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,1.5 - parent: 975 - - uid: 979 + pos: 5.5,5.5 + parent: 1246 + - uid: 14 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,2.5 - parent: 975 - - uid: 982 + pos: 4.5,-0.5 + parent: 1246 + - uid: 15 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 975 - - uid: 983 + pos: 4.5,6.5 + parent: 1246 + - uid: 16 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 975 - - uid: 985 + pos: 7.5,8.5 + parent: 1246 + - uid: 18 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,3.5 - parent: 975 - - uid: 986 + pos: 5.5,2.5 + parent: 1246 + - uid: 19 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,5.5 - parent: 975 - - uid: 987 + pos: 7.5,2.5 + parent: 1246 + - uid: 20 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,3.5 - parent: 975 - - uid: 989 + pos: 8.5,2.5 + parent: 1246 + - uid: 21 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 975 - - uid: 990 + pos: 8.5,5.5 + parent: 1246 + - uid: 25 components: - type: Transform - pos: 3.5,6.5 - parent: 975 - - uid: 991 + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1246 + - uid: 32 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,5.5 - parent: 975 - - uid: 992 + rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1246 + - uid: 34 components: - type: Transform - pos: 6.5,6.5 - parent: 975 - - uid: 994 + rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 1246 + - uid: 35 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 1246 + - uid: 36 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1246 + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 1246 + - uid: 43 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1246 + - uid: 50 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,8.5 - parent: 975 - - uid: 997 + pos: 6.5,-0.5 + parent: 1246 + - uid: 51 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 975 - - uid: 998 + pos: 8.5,4.5 + parent: 1246 + - uid: 55 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,6.5 - parent: 975 - - uid: 999 + pos: 5.5,3.5 + parent: 1246 + - uid: 56 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 975 - - uid: 1000 + pos: 5.5,6.5 + parent: 1246 + - uid: 60 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,5.5 - parent: 975 - - uid: 1002 + pos: 2.5,1.5 + parent: 1246 + - uid: 61 components: - type: Transform - pos: 2.5,2.5 - parent: 975 - - uid: 1003 + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 1246 + - uid: 62 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,7.5 - parent: 975 - - uid: 1004 + pos: 3.5,0.5 + parent: 1246 + - uid: 63 components: - type: Transform - pos: 7.5,2.5 - parent: 975 - - uid: 1006 + pos: 2.5,3.5 + parent: 1246 + - uid: 64 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,8.5 - parent: 975 - - uid: 1007 + pos: 1.5,3.5 + parent: 1246 + - uid: 67 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,9.5 - parent: 975 - - uid: 1008 + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1246 + - uid: 74 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,9.5 - parent: 975 - - uid: 1009 + pos: 8.5,6.5 + parent: 1246 + - uid: 76 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,7.5 - parent: 975 - - uid: 1019 + parent: 1246 + - uid: 77 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 975 + pos: 3.5,6.5 + parent: 1246 + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 1246 + - uid: 88 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1246 - proto: WallMiningDiagonal entities: - - uid: 993 + - uid: 6 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,6.5 - parent: 975 - - uid: 1005 + pos: 8.5,8.5 + parent: 1246 + - uid: 17 components: - type: Transform - pos: 1.5,6.5 - parent: 975 - - uid: 1010 + pos: 2.5,8.5 + parent: 1246 + - uid: 22 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 1246 + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1246 + - uid: 29 components: - type: Transform - pos: 2.5,9.5 - parent: 975 - - uid: 1012 + rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 1246 + - uid: 30 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,2.5 - parent: 975 - - uid: 1013 + pos: 7.5,-0.5 + parent: 1246 + - uid: 31 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,0.5 + parent: 1246 + - uid: 48 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1246 + - uid: 52 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,9.5 - parent: 975 - - uid: 1014 + pos: 10.5,5.5 + parent: 1246 + - uid: 59 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1246 + - uid: 80 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,2.5 - parent: 975 + pos: 3.5,-0.5 + parent: 1246 + - uid: 89 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1246 + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1246 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1246 - proto: WarpPoint entities: - - uid: 80 + - uid: 94 components: - type: Transform - pos: 4.5,9.5 - parent: 975 + rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 1246 +- proto: WeaponCrusherDagger + entities: + - uid: 252 + components: + - type: Transform + parent: 251 + - type: Physics + canCollide: False ... diff --git a/Resources/Maps/_Forge/Shuttles/Salvage/theScavenger.yml b/Resources/Maps/_Forge/Shuttles/Salvage/theScavenger.yml index 7bfed97c49ac..877bc92e6722 100644 --- a/Resources/Maps/_Forge/Shuttles/Salvage/theScavenger.yml +++ b/Resources/Maps/_Forge/Shuttles/Salvage/theScavenger.yml @@ -1,18 +1,34 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 01/16/2026 04:20:21 + entityCount: 613 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 7: FloorAsteroidSand 9: FloorAsteroidSandRed 15: FloorBar + 10: FloorDarkOffset + 6: FloorElevatorShaft + 8: FloorGlass 55: FloorGrayConcrete 4: FloorMetalDiamond 1: FloorMiningLight 3: FloorRGlass 2: FloorSteelDirty + 11: FloorTechMaint2 114: FloorTechMaint3 129: Lattice + 5: Plating entities: - proto: "" entities: @@ -27,20 +43,20 @@ entities: chunks: 0,0: ind: 0,0 - tiles: DwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAcgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: BQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAAAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAUAAAAAAACBAAAAAAAAgQAAAAAAAAUAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAcgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcgAAAAAADwAAAAAAgQAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAAUAAAAAAACBAAAAAAAAgQAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAIEAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAAAFAAAAAAAAgQAAAAAAAIEAAAAAAAAFAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAACBAAAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAEAAAAAAAAFAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAABQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAgQAAAAAAgQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIEAAAAAAACBAAAAAAAABQAAAAAAAAQAAAAAAAAFAAAAAAAABAAAAAAAAAQAAAAAAAAFAAAAAAAABQAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAAAGAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACBAAAAAAAAAAAAAAAAAIEAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAACBAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAADwAAAAAAAgAAAAAADwAAAAAAAgAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAADwAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAADwAAAAAABAAAAAAABAAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAAAgAAAAAADwAAAAAABAAAAAAABAAAAAAAAwAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAAAgAAAAAADwAAAAAADwAAAAAAAgAAAAAADwAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAADwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAAABgAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAABQAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAKAAAAAAAACgAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAAABQAAAAAAAAsAAAAAAAAFAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAQAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgQAAAAAAAIEAAAAAAACBAAAAAAAABQAAAAAAAAQAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -53,6 +69,7 @@ entities: - type: OccluderTree - type: SpreaderGrid - type: Shuttle + dampingModifier: 0.25 - type: GridPathfinding - type: Gravity gravityShakeSound: !type:SoundPathSpecifier @@ -62,238 +79,101 @@ entities: version: 2 nodes: - node: - color: '#D69949FF' - id: MiniTileSteelCornerNw + color: '#FA750096' + id: Bot decals: - 14: 1,0 + 89: -8,-5 + 90: -8,-4 + 91: -12,-5 + 92: -12,-4 + 93: -6,-5 - node: - color: '#D69949FF' - id: MiniTileSteelCornerSw + color: '#FFFFFFFF' + id: Bot decals: - 15: 1,-2 + 98: -9,0 + 99: -9,-1 + 100: -9,-2 + 101: -8,-2 - node: - color: '#D69949FF' - id: MiniTileSteelLineN + color: '#334E6DC8' + id: BotGreyscale decals: - 11: 8,0 - 12: 7,0 - 13: 2,0 + 97: -6,0 - node: - color: '#765428FF' - id: MiniTileSteelLineS + color: '#DE3A3A96' + id: BotGreyscale decals: - 70: -5,-1 + 96: -7,0 - node: - color: '#D69949FF' - id: MiniTileSteelLineS + color: '#FFFFFFFF' + id: BotGreyscale decals: - 16: 2,-2 - 17: 7,-2 - 18: 8,-2 + 110: 1,0 + 111: 2,0 + 112: 3,0 + 113: 1,-2 + 114: 2,-2 + 115: 3,-2 + 116: 5,0 + 117: 8,-2 - node: - color: '#4A3519FF' - id: MiniTileWhiteCornerNe + color: '#FA750096' + id: BoxGreyscale decals: - 40: -1,0 + 118: 5,-2 + 119: 6,-2 + 120: 7,-2 - node: - color: '#AE6716FF' - id: MiniTileWhiteCornerNe + color: '#FFFFFFFF' + id: BrickTileDarkBox decals: - 61: -1,-3 + 102: -2,-4 - node: - color: '#D69949FF' - id: MiniTileWhiteCornerNe + color: '#FFFFFFFF' + id: BrickTileDarkEndE decals: - 54: -8,0 + 86: -11,-3 + 87: -4,-5 + 88: -1,0 + 106: 7,-2 - node: - color: '#4A3519FF' - id: MiniTileWhiteCornerNw + color: '#FFFFFFFF' + id: BrickTileDarkEndW decals: - 35: -6,0 + 79: -12,-3 + 80: -6,-5 + 81: -3,0 + 107: 5,-2 - node: - color: '#AE6716FF' - id: MiniTileWhiteCornerNw + color: '#FFFFFFFF' + id: BrickTileDarkLineN decals: - 60: -4,-3 + 84: -5,-5 + 85: -2,0 + 108: 6,-2 - node: - color: '#D69949FF' - id: MiniTileWhiteCornerNw + color: '#FFFFFFFF' + id: BrickTileDarkLineS decals: - 52: -10,0 + 82: -5,-5 + 83: -2,0 + 109: 6,-2 - node: - color: '#4A3519FF' - id: MiniTileWhiteCornerSe + color: '#FA750096' + id: OffsetOverlay decals: - 27: -6,-5 - - node: - color: '#AE6716FF' - id: MiniTileWhiteCornerSe - decals: - 58: -1,-5 - - node: - color: '#D69949FF' - id: MiniTileWhiteCornerSe - decals: - 57: -8,-3 - - node: - color: '#AE6716FF' - id: MiniTileWhiteCornerSw - decals: - 59: -4,-5 - - node: - color: '#D69949FF' - id: MiniTileWhiteCornerSw - decals: - 49: -10,-3 - - node: - color: '#4A3519FF' - id: MiniTileWhiteEndW - decals: - 31: -10,-5 - - node: - color: '#4A3519FF' - id: MiniTileWhiteInnerNw - decals: - 34: -6,-5 - - node: - color: '#4A3519FF' - id: MiniTileWhiteInnerSe - decals: - 43: -6,-1 - - node: - color: '#4A3519FF' - id: MiniTileWhiteLineE - decals: - 24: -6,-2 - 25: -6,-3 - 26: -6,-4 - - node: - color: '#AE6716FF' - id: MiniTileWhiteLineE - decals: - 64: -1,-4 - - node: - color: '#D69949FF' - id: MiniTileWhiteLineE - decals: - 55: -8,-1 - 56: -8,-2 - - node: - color: '#4A3519FF' - id: MiniTileWhiteLineN - decals: - 32: -8,-5 - 33: -7,-5 - 36: -5,0 - 37: -3,0 - 38: -2,0 - 39: -4,0 - - node: - color: '#AE6716FF' - id: MiniTileWhiteLineN - decals: - 62: -2,-3 - - node: - color: '#D69949FF' - id: MiniTileWhiteLineN - decals: - 53: -9,0 - - node: - color: '#4A3519FF' - id: MiniTileWhiteLineS - decals: - 28: -7,-5 - 29: -8,-5 - 30: -9,-5 - 41: -4,-1 - 42: -2,-1 - 44: -1,-1 - - node: - color: '#AE6716FF' - id: MiniTileWhiteLineS - decals: - 65: -3,-5 - 66: -2,-5 - - node: - color: '#4A3519FF' - id: MiniTileWhiteLineW - decals: - 20: -6,-1 - 21: -6,-2 - 22: -6,-3 - 23: -6,-4 - - node: - color: '#AE6716FF' - id: MiniTileWhiteLineW - decals: - 63: -4,-4 - - node: - color: '#D69949FF' - id: MiniTileWhiteLineW - decals: - 50: -10,-2 - 51: -10,-1 - - node: - color: '#4A3519FF' - id: WarnLineGreyscaleE - decals: - 45: -1,-1 - - node: - color: '#D69949FF' - id: WarnLineGreyscaleE - decals: - 8: 8,0 - 9: 8,-1 - 10: 8,-2 - - node: - color: '#4A3519FF' - id: WarnLineGreyscaleN - decals: - 47: -9,-5 - - node: - color: '#AE6716FF' - id: WarnLineGreyscaleN - decals: - 67: -3,-3 - - node: - color: '#D69949FF' - id: WarnLineGreyscaleN - decals: - 4: 3,0 - 5: 4,0 - 6: 5,0 - 7: 6,0 - - node: - color: '#4A3519FF' - id: WarnLineGreyscaleS - decals: - 46: -3,-1 - - node: - color: '#D69949FF' - id: WarnLineGreyscaleS - decals: - 0: 3,-2 - 1: 4,-2 - 2: 5,-2 - 3: 6,-2 - 48: -9,-3 - - node: - color: '#D69949FF' - id: WarnLineGreyscaleW - decals: - 19: 1,-1 - - node: - cleanable: True - color: '#A05212FF' - id: splatter - decals: - 69: -5.3503723,-0.6435671 - - node: - cleanable: True - color: '#D58C18FF' - id: splatter - decals: - 68: -1.6769886,-3.6603909 + 71: -6,-5 + 72: -5,-5 + 73: -4,-5 + 74: -12,-3 + 75: -11,-3 + 76: -3,0 + 77: -2,0 + 78: -1,0 + 103: 5,-2 + 104: 6,-2 + 105: 7,-2 - type: GridAtmosphere version: 2 data: @@ -303,43 +183,58 @@ entities: 1: 14 0,0: 0: 14 - 1: 52992 + 1: 65024 -1,0: - 0: 15 + 0: 14 + 1: 3840 + 2: 8192 1,0: 0: 15 - 1: 65280 + 1: 64768 1,-1: 0: 65280 - 1: 15 + 1: 13 2,0: 0: 1 - 1: 972 + 2: 2560 + 1: 200 2,-1: 0: 4352 - 1: 52451 + 1: 51392 + 2: 10 0,-2: - 1: 49408 + 1: 61184 -1,-2: - 0: 61440 + 0: 53248 -1,-1: - 0: 62207 + 0: 61919 1,-2: - 1: 61440 + 1: 54016 + 2,-2: + 2: 4096 -3,0: - 1: 32 - 0: 12 + 1: 50179 + 2: 8224 + 0: 8 -3,-1: - 0: 52424 + 1: 12288 + 0: 34879 -2,0: - 0: 13 + 0: 7 + 1: 4352 + 2: 10240 -2,-1: - 0: 54612 + 0: 62799 + -4,-2: + 2: 2048 + 0: 32768 + -4,-1: + 0: 8 + 1: 32768 -3,-2: - 1: 512 - 0: 51200 + 0: 61440 -2,-2: - 0: 29184 + 0: 61440 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -371,2519 +266,3885 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance - type: BecomesStation id: theScavenger -- proto: AirAlarm + - type: ImplicitRoof +- proto: ADTSalvageAirlock entities: - - uid: 278 + - uid: 362 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-1.5 + pos: -2.5,-3.5 parent: 1 - - type: DeviceList - devices: - - 226 - - 222 - - 221 - - 269 - - 223 - - 225 - - 220 - - 224 -- proto: AirCanister +- proto: ADTSalvageAirlockGlass entities: - - uid: 334 + - uid: 365 components: - type: Transform - pos: -1.5,-4.5 + rot: 1.5707963267948966 rad + pos: -3.5,-1.5 parent: 1 -- proto: AirlockGlassShuttle - entities: - - uid: 44 + - uid: 366 components: - type: Transform - pos: -6.5,-5.5 + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 parent: 1 - - uid: 45 +- proto: AirAlarm + entities: + - uid: 14 components: - type: Transform - pos: -8.5,-5.5 + rot: 3.141592653589793 rad + pos: -6.5,-1.5 parent: 1 -- proto: AirlockMining + - type: DeviceList + devices: + - 165 + - 107 + - 318 + - 327 + - 320 + - 316 + - 215 + - 12 + - 325 + - 330 + - 328 + - 332 + - 333 + - 326 + - 229 + - 216 + - 217 + - 317 + - 331 +- proto: AirlockEngineering entities: - - uid: 193 + - uid: 360 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-3.5 + pos: -4.5,-0.5 parent: 1 - - uid: 209 + - uid: 361 components: - type: Transform - pos: -2.5,-1.5 + rot: 1.5707963267948966 rad + pos: -5.5,-2.5 parent: 1 - - uid: 210 +- proto: AirlockExternal + entities: + - uid: 363 components: - type: Transform - pos: 0.5,-0.5 + rot: 1.5707963267948966 rad + pos: -9.5,-3.5 parent: 1 -- proto: APCBasic - entities: - - uid: 155 + - uid: 364 components: - type: Transform - pos: -1.5,-1.5 + rot: 1.5707963267948966 rad + pos: -9.5,-4.5 parent: 1 -- proto: AtmosDeviceFanTiny +- proto: AirlockGlassShuttleSyndicate entities: - - uid: 133 + - uid: 580 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-2.5 + pos: -12.5,-4.5 parent: 1 - - uid: 134 + - uid: 582 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-2.5 + pos: -12.5,-3.5 parent: 1 - - uid: 135 +- proto: APCBasic + entities: + - uid: 17 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 + pos: -7.5,1.5 parent: 1 - - uid: 136 + - uid: 238 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-2.5 + rot: 3.141592653589793 rad + pos: -6.5,-5.5 parent: 1 - - uid: 137 + - uid: 465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-1.5 + pos: 1.5,1.5 parent: 1 - - uid: 138 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 19 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 + rot: 3.141592653589793 rad + pos: 4.5,1.5 parent: 1 - - uid: 139 + - uid: 108 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,0.5 + pos: -12.5,-4.5 parent: 1 - - uid: 140 + - uid: 208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,1.5 + pos: 3.5,-2.5 parent: 1 - - uid: 141 + - uid: 218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,1.5 + rot: 3.141592653589793 rad + pos: 3.5,1.5 parent: 1 - - uid: 142 + - uid: 219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,1.5 + rot: 3.141592653589793 rad + pos: 2.5,1.5 parent: 1 - - uid: 143 + - uid: 228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,1.5 + pos: 2.5,-2.5 parent: 1 - - uid: 144 + - uid: 264 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-5.5 + pos: 4.5,-2.5 parent: 1 - - uid: 145 + - uid: 271 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,-5.5 + pos: -12.5,-3.5 parent: 1 -- proto: BlastDoor +- proto: AtmosFixBlockerMarker entities: - - uid: 34 + - uid: 2 components: - type: Transform - pos: 3.5,-2.5 + pos: -2.5,2.5 parent: 1 - - uid: 35 + - uid: 9 components: - type: Transform - pos: 5.5,-2.5 + pos: -12.5,-5.5 parent: 1 - - uid: 36 + - uid: 26 components: - type: Transform - pos: 9.5,-0.5 + pos: 11.5,-2.5 parent: 1 - - uid: 37 + - uid: 27 components: - type: Transform - pos: 9.5,-1.5 + pos: 6.5,-4.5 parent: 1 - - uid: 38 + - uid: 28 components: - type: Transform - pos: 6.5,1.5 + pos: 6.5,-3.5 parent: 1 - - uid: 39 + - uid: 29 components: - type: Transform - pos: 5.5,1.5 + pos: 4.5,-4.5 parent: 1 - - uid: 40 + - uid: 30 components: - type: Transform - pos: 4.5,1.5 + pos: 3.5,-3.5 parent: 1 - - uid: 41 + - uid: 31 components: - type: Transform - pos: 3.5,1.5 + pos: 2.5,-4.5 parent: 1 - - uid: 42 + - uid: 32 components: - type: Transform - pos: 6.5,-2.5 + pos: 2.5,-5.5 parent: 1 - - uid: 43 + - uid: 33 components: - type: Transform - pos: 4.5,-2.5 + pos: -6.5,3.5 parent: 1 - - uid: 46 + - uid: 34 components: - type: Transform - pos: 9.5,0.5 + pos: -8.5,3.5 parent: 1 -- proto: Bucket - entities: - - uid: 216 + - uid: 35 components: - type: Transform - pos: -7.4399242,-1.5760517 + pos: -7.5,3.5 parent: 1 -- proto: CableApcExtension - entities: - - uid: 279 + - uid: 36 components: - type: Transform - pos: -1.5,-1.5 + pos: 3.5,2.5 parent: 1 - - uid: 280 + - uid: 37 components: - type: Transform - pos: -1.5,-0.5 + pos: 4.5,2.5 parent: 1 - - uid: 281 + - uid: 38 components: - type: Transform - pos: -1.5,0.5 + pos: 3.5,3.5 parent: 1 - - uid: 282 + - uid: 39 components: - type: Transform - pos: -2.5,0.5 + pos: 6.5,2.5 parent: 1 - - uid: 283 + - uid: 40 components: - type: Transform - pos: -4.5,0.5 + pos: 4.5,3.5 parent: 1 - - uid: 284 + - uid: 41 components: - type: Transform - pos: -3.5,0.5 + pos: 5.5,3.5 parent: 1 - - uid: 285 - components: - - type: Transform - pos: -5.5,0.5 - parent: 1 - - uid: 286 - components: - - type: Transform - pos: -5.5,-0.5 - parent: 1 - - uid: 287 + - uid: 45 components: - type: Transform - pos: -5.5,-1.5 + pos: 1.5,2.5 parent: 1 - - uid: 288 + - uid: 63 components: - type: Transform - pos: -5.5,-2.5 + pos: -10.5,0.5 parent: 1 - - uid: 289 + - uid: 68 components: - type: Transform - pos: -5.5,-4.5 + pos: -3.5,2.5 parent: 1 - - uid: 290 + - uid: 69 components: - type: Transform - pos: -5.5,-3.5 + pos: -1.5,2.5 parent: 1 - - uid: 291 + - uid: 77 components: - type: Transform - pos: -6.5,-4.5 + pos: -12.5,-0.5 parent: 1 - - uid: 292 + - uid: 78 components: - type: Transform - pos: -7.5,-4.5 + pos: -11.5,-0.5 parent: 1 - - uid: 293 + - uid: 79 components: - type: Transform - pos: -8.5,-4.5 + pos: -11.5,0.5 parent: 1 - - uid: 294 + - uid: 80 components: - type: Transform - pos: -8.5,-3.5 + pos: -10.5,-0.5 parent: 1 - - uid: 295 + - uid: 81 components: - type: Transform - pos: -8.5,-2.5 + pos: 6.5,3.5 parent: 1 - - uid: 296 + - uid: 83 components: - type: Transform - pos: -8.5,-1.5 + pos: 7.5,2.5 parent: 1 - - uid: 297 + - uid: 84 components: - type: Transform - pos: -8.5,0.5 + pos: 10.5,1.5 parent: 1 - - uid: 298 + - uid: 86 components: - type: Transform - pos: -8.5,-0.5 + pos: 10.5,-0.5 parent: 1 - - uid: 299 + - uid: 87 components: - type: Transform - pos: -9.5,0.5 + pos: 9.5,-3.5 parent: 1 - - uid: 300 + - uid: 88 components: - type: Transform - pos: -7.5,0.5 + pos: 8.5,-4.5 parent: 1 - - uid: 301 + - uid: 89 components: - type: Transform - pos: 0.5,-0.5 + pos: 11.5,-0.5 parent: 1 - - uid: 302 + - uid: 90 components: - type: Transform - pos: 0.5,-0.5 + pos: 11.5,-1.5 parent: 1 - - uid: 303 + - uid: 156 components: - type: Transform - pos: 1.5,-0.5 + pos: 2.5,3.5 parent: 1 - - uid: 304 + - uid: 161 components: - type: Transform - pos: -0.5,-0.5 + pos: 0.5,3.5 parent: 1 - - uid: 305 + - uid: 162 components: - type: Transform - pos: 2.5,-0.5 + pos: 9.5,2.5 parent: 1 - - uid: 306 + - uid: 163 components: - type: Transform - pos: 2.5,0.5 + pos: 11.5,1.5 parent: 1 - - uid: 307 + - uid: 166 components: - type: Transform - pos: 2.5,-0.5 + pos: 3.5,-5.5 parent: 1 - - uid: 308 + - uid: 167 components: - type: Transform - pos: 2.5,-1.5 + pos: 1.5,-4.5 parent: 1 - - uid: 309 + - uid: 169 components: - type: Transform - pos: 3.5,-0.5 + pos: -10.5,3.5 parent: 1 - - uid: 310 + - uid: 170 components: - type: Transform - pos: 4.5,-0.5 + pos: -9.5,2.5 parent: 1 - - uid: 311 + - uid: 171 components: - type: Transform - pos: 5.5,-0.5 + pos: 2.5,2.5 parent: 1 - - uid: 312 + - uid: 173 components: - type: Transform - pos: 6.5,-0.5 + pos: -0.5,2.5 parent: 1 - - uid: 313 + - uid: 180 components: - type: Transform - pos: 8.5,-0.5 + pos: 11.5,2.5 parent: 1 - - uid: 314 + - uid: 181 components: - type: Transform - pos: 7.5,-0.5 + pos: 7.5,-4.5 parent: 1 - - uid: 315 + - uid: 182 components: - type: Transform - pos: 8.5,0.5 + pos: 11.5,-3.5 parent: 1 - - uid: 316 + - uid: 183 components: - type: Transform - pos: 8.5,-1.5 + pos: 3.5,-4.5 parent: 1 - - uid: 317 + - uid: 184 components: - type: Transform - pos: 3.5,-0.5 + pos: 1.5,-3.5 parent: 1 - - uid: 318 + - uid: 185 components: - type: Transform - pos: 4.5,-0.5 + pos: 2.5,-3.5 parent: 1 - - uid: 319 + - uid: 187 components: - type: Transform - pos: 5.5,-0.5 + pos: -9.5,3.5 parent: 1 - - uid: 320 + - uid: 188 components: - type: Transform - pos: 6.5,-0.5 + pos: -7.5,2.5 parent: 1 - - uid: 321 + - uid: 189 components: - type: Transform - pos: 1.5,-1.5 + pos: 1.5,3.5 parent: 1 - - uid: 322 + - uid: 190 components: - type: Transform - pos: 1.5,-2.5 + pos: 4.5,-3.5 parent: 1 - - uid: 323 + - uid: 191 components: - type: Transform - pos: 1.5,-3.5 + pos: 11.5,0.5 parent: 1 - - uid: 324 + - uid: 192 components: - type: Transform - pos: 1.5,0.5 + pos: 4.5,-5.5 parent: 1 - - uid: 325 + - uid: 193 components: - type: Transform - pos: 1.5,1.5 + pos: 0.5,-5.5 parent: 1 - - uid: 326 + - uid: 195 components: - type: Transform - pos: 1.5,2.5 + pos: 7.5,-3.5 parent: 1 - - uid: 327 + - uid: 196 components: - type: Transform - pos: 0.5,2.5 + pos: 7.5,3.5 parent: 1 - - uid: 328 + - uid: 198 components: - type: Transform - pos: 8.5,1.5 + pos: 1.5,-5.5 parent: 1 - - uid: 329 + - uid: 201 components: - type: Transform - pos: 8.5,2.5 + pos: 10.5,-2.5 parent: 1 - - uid: 330 + - uid: 203 components: - type: Transform - pos: 9.5,2.5 + pos: -10.5,1.5 parent: 1 - - uid: 331 + - uid: 204 components: - type: Transform - pos: 8.5,-2.5 + pos: 5.5,-5.5 parent: 1 - - uid: 332 + - uid: 249 components: - type: Transform - pos: 8.5,-3.5 + pos: -2.5,3.5 parent: 1 - - uid: 333 + - uid: 254 components: - type: Transform - pos: 9.5,-3.5 + pos: -4.5,2.5 parent: 1 -- proto: CableApcStack1 +- proto: BannerTL entities: - - uid: 396 + - uid: 281 components: - type: Transform - pos: -0.59391594,-2.9187317 + pos: -10.5,-2.5 parent: 1 -- proto: CableHV +- proto: BenchSteelLeft entities: - - uid: 4 + - uid: 250 components: - type: Transform - pos: -1.5,-4.5 + rot: 3.141592653589793 rad + pos: -3.5,-4.5 parent: 1 - - uid: 7 + - uid: 274 components: - type: Transform - pos: -2.5,-4.5 + pos: -2.5,0.5 parent: 1 - - uid: 125 +- proto: BenchSteelRight + entities: + - uid: 207 components: - type: Transform - pos: -0.5,-4.5 + rot: 3.141592653589793 rad + pos: -4.5,-4.5 parent: 1 - - uid: 156 + - uid: 275 components: - type: Transform - pos: -3.5,-4.5 + pos: -1.5,0.5 parent: 1 -- proto: CableMV +- proto: BlastDoor entities: - - uid: 5 + - uid: 367 components: - type: Transform - pos: -3.5,-4.5 + rot: 3.141592653589793 rad + pos: 2.5,-2.5 parent: 1 - - uid: 170 + - uid: 368 components: - type: Transform - pos: -3.5,-3.5 + rot: 3.141592653589793 rad + pos: 4.5,-2.5 parent: 1 - - uid: 171 + - uid: 369 components: - type: Transform - pos: -3.5,-2.5 + rot: 3.141592653589793 rad + pos: 3.5,-2.5 parent: 1 - - uid: 172 + - uid: 370 components: - type: Transform - pos: -2.5,-2.5 + pos: 2.5,1.5 parent: 1 - - uid: 173 + - uid: 371 components: - type: Transform - pos: -1.5,-2.5 + pos: 3.5,1.5 parent: 1 - - uid: 174 + - uid: 372 components: - type: Transform - pos: -1.5,-1.5 + pos: 4.5,1.5 parent: 1 -- proto: Catwalk +- proto: BlastDoorOpen entities: - - uid: 58 + - uid: 255 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-2.5 + pos: -0.5,-5.5 parent: 1 - - uid: 59 + - uid: 373 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-3.5 + pos: -1.5,-5.5 parent: 1 - - uid: 60 + - uid: 374 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-3.5 + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 parent: 1 - - uid: 61 + - uid: 375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-2.5 + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 parent: 1 - - uid: 62 +- proto: ButtonFrameCaution + entities: + - uid: 376 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-3.5 + pos: -1.5,-4.5 parent: 1 - - uid: 63 + - uid: 583 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-4.5 + pos: 3.5,-1.5 parent: 1 - - uid: 64 + - uid: 584 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-2.5 + pos: 3.5,0.5 parent: 1 - - uid: 65 +- proto: ButtonFrameJanitor + entities: + - uid: 445 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-3.5 + pos: 5.2517695,-2.5000448 parent: 1 - - uid: 66 + - uid: 446 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-3.5 + pos: 5.7517695,-2.5000448 parent: 1 - - uid: 67 +- proto: CableApcExtension + entities: + - uid: 85 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-2.5 + pos: 9.5,-0.5 parent: 1 - - uid: 68 + - uid: 461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-3.5 + pos: -7.5,0.5 parent: 1 - - uid: 69 + - uid: 464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-4.5 + pos: -5.5,-0.5 parent: 1 - - uid: 70 + - uid: 479 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-2.5 + pos: -6.5,-0.5 parent: 1 - - uid: 71 + - uid: 494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-3.5 + pos: -9.5,-0.5 parent: 1 - - uid: 72 + - uid: 495 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-3.5 + pos: -8.5,-0.5 parent: 1 - - uid: 73 + - uid: 496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-2.5 + pos: -7.5,1.5 parent: 1 - - uid: 74 + - uid: 497 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-3.5 + pos: -7.5,-0.5 parent: 1 - - uid: 75 + - uid: 499 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-4.5 + pos: -4.5,-0.5 parent: 1 - - uid: 76 + - uid: 500 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-2.5 + pos: -3.5,-0.5 parent: 1 - - uid: 77 + - uid: 501 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-3.5 + pos: -2.5,-0.5 parent: 1 - - uid: 78 + - uid: 502 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-3.5 + pos: -1.5,-0.5 parent: 1 - - uid: 79 + - uid: 503 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-2.5 + pos: 1.5,0.5 parent: 1 - - uid: 80 + - uid: 504 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-4.5 + pos: 0.5,-0.5 parent: 1 - - uid: 81 + - uid: 505 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-4.5 + pos: 1.5,-0.5 parent: 1 - - uid: 82 + - uid: 506 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-2.5 + pos: 2.5,-0.5 parent: 1 - - uid: 83 + - uid: 507 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-4.5 + pos: 3.5,-0.5 parent: 1 - - uid: 84 + - uid: 508 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-3.5 + pos: 4.5,-0.5 parent: 1 - - uid: 85 + - uid: 509 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,1.5 + pos: 5.5,-0.5 parent: 1 - - uid: 86 + - uid: 510 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,2.5 + pos: 6.5,-0.5 parent: 1 - - uid: 87 + - uid: 511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,3.5 + pos: 7.5,-0.5 parent: 1 - - uid: 88 + - uid: 512 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,1.5 + pos: 8.5,-0.5 parent: 1 - - uid: 89 + - uid: 513 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,2.5 + pos: 4.5,0.5 parent: 1 - - uid: 90 + - uid: 514 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,3.5 + pos: 4.5,1.5 parent: 1 - - uid: 91 + - uid: 515 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,1.5 + pos: 4.5,-1.5 parent: 1 - - uid: 92 + - uid: 516 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,2.5 + pos: 4.5,-2.5 parent: 1 - - uid: 93 + - uid: 517 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,3.5 + pos: 1.5,1.5 parent: 1 - - uid: 94 + - uid: 518 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,1.5 + pos: 2.5,-1.5 parent: 1 - - uid: 95 + - uid: 519 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,2.5 + pos: 2.5,-2.5 parent: 1 - - uid: 96 + - uid: 520 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,3.5 + pos: 2.5,1.5 parent: 1 - - uid: 97 + - uid: 521 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,1.5 + pos: -2.5,0.5 parent: 1 - - uid: 98 + - uid: 522 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,2.5 + pos: -2.5,1.5 parent: 1 - - uid: 99 + - uid: 523 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,3.5 + pos: -6.5,-5.5 parent: 1 - - uid: 100 + - uid: 524 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,1.5 + pos: -6.5,-4.5 parent: 1 - - uid: 101 + - uid: 525 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,2.5 + pos: -6.5,-3.5 parent: 1 - - uid: 102 + - uid: 526 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,3.5 + pos: -5.5,-3.5 parent: 1 - - uid: 103 + - uid: 527 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,1.5 + pos: -4.5,-3.5 parent: 1 - - uid: 104 + - uid: 528 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,0.5 + pos: -3.5,-3.5 parent: 1 - - uid: 105 + - uid: 529 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-0.5 + pos: -2.5,-3.5 parent: 1 - - uid: 106 + - uid: 530 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-1.5 + pos: -1.5,-3.5 parent: 1 - - uid: 107 + - uid: 531 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-2.5 + pos: -0.5,-3.5 parent: 1 - - uid: 108 + - uid: 532 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,1.5 + pos: 0.5,-3.5 parent: 1 - - uid: 109 + - uid: 533 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,0.5 + pos: -7.5,-3.5 parent: 1 - - uid: 110 + - uid: 534 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-0.5 + pos: -8.5,-3.5 parent: 1 - - uid: 111 + - uid: 535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-1.5 + pos: -9.5,-3.5 parent: 1 - - uid: 112 + - uid: 536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-2.5 + pos: -10.5,-3.5 parent: 1 - - uid: 113 + - uid: 537 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,1.5 + pos: -11.5,-3.5 parent: 1 - - uid: 114 + - uid: 538 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,0.5 + pos: -11.5,-2.5 parent: 1 - - uid: 115 + - uid: 539 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-0.5 + pos: -3.5,-2.5 parent: 1 - - uid: 116 + - uid: 540 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-1.5 + pos: -5.5,-2.5 parent: 1 - - uid: 117 + - uid: 541 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-2.5 + pos: -9.5,-4.5 parent: 1 -- proto: ChairOfficeDark - entities: - - uid: 188 + - uid: 542 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5519209,-3.3149328 + pos: 7.5,-1.5 parent: 1 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 204 + - uid: 543 components: - type: Transform - pos: -7.6825485,0.66437244 + pos: 7.5,-2.5 parent: 1 - - uid: 205 +- proto: CableHV + entities: + - uid: 467 components: - type: Transform - pos: -7.2450485,0.57062244 + pos: -8.5,0.5 parent: 1 - - uid: 206 + - uid: 468 components: - type: Transform - pos: -7.7606735,0.46124744 + pos: -8.5,-0.5 parent: 1 - - uid: 207 + - uid: 469 components: - type: Transform - pos: -7.2919235,0.30499744 + pos: -8.5,-1.5 parent: 1 -- proto: ComputerTabletopShuttle - entities: - - uid: 184 + - uid: 553 components: - type: Transform - pos: -1.5,-2.5 + pos: -7.5,-0.5 parent: 1 -- proto: ComputerTabletopStationRecords - entities: - - uid: 183 + - uid: 554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-3.5 + pos: -6.5,-0.5 parent: 1 -- proto: ConveyorBelt - entities: - - uid: 149 + - uid: 555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 + pos: -5.5,-0.5 parent: 1 - - uid: 150 + - uid: 556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 + pos: -4.5,-0.5 parent: 1 - - uid: 151 + - uid: 557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 + pos: -3.5,-0.5 parent: 1 -- proto: CrateNPCHamlet - entities: - - uid: 146 + - uid: 558 components: - type: Transform - pos: -3.5,-2.5 + pos: -2.5,-0.5 parent: 1 -- proto: DrinkBeerCan - entities: - - uid: 379 + - uid: 559 components: - type: Transform - pos: -0.8644886,-2.8665457 + pos: -1.5,-0.5 parent: 1 -- proto: DrinkNukieCan - entities: - - uid: 382 + - uid: 560 components: - type: Transform - pos: -4.935375,0.122057915 + pos: -0.5,-0.5 parent: 1 -- proto: DrinkVodkaBottleFull - entities: - - uid: 383 + - uid: 561 components: - type: Transform - pos: -1.5864401,-3.346836 + pos: 0.5,-0.5 parent: 1 -- proto: FaxMachineShip - entities: - - uid: 186 + - uid: 562 components: - type: Transform - pos: -0.5,-2.5 + pos: 1.5,-0.5 parent: 1 -- proto: GasPassiveVent - entities: - - uid: 251 + - uid: 563 components: - type: Transform - pos: 4.5,3.5 + pos: 2.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeBend - entities: - - uid: 234 + - uid: 564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,0.5 + pos: 3.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 235 + - uid: 565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 + pos: 4.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 243 + - uid: 566 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-0.5 + pos: 5.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 257 + - uid: 567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-1.5 + pos: 6.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 259 + - uid: 568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-0.5 + pos: 7.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 260 + - uid: 569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-1.5 + pos: 8.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 275 + - uid: 570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,0.5 + pos: 4.5,0.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 277 + - uid: 571 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-1.5 + pos: 4.5,-1.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeStraight - entities: - - uid: 176 + - uid: 572 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-3.5 + pos: -3.5,-1.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 229 + - uid: 573 components: - type: Transform - pos: -1.5,-1.5 + pos: -3.5,-2.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 232 + - uid: 574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-0.5 + pos: -3.5,-3.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 233 + - uid: 575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-0.5 + pos: -5.5,-3.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 236 + - uid: 576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-0.5 + pos: -4.5,-3.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 237 + - uid: 577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-0.5 + pos: -6.5,-3.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 239 + - uid: 578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-0.5 + pos: -6.5,-4.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 240 + - uid: 579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 + pos: -6.5,-5.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 241 +- proto: CableMV + entities: + - uid: 82 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 + pos: 1.5,1.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 242 + - uid: 470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-0.5 + pos: -8.5,-1.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 252 + - uid: 471 components: - type: Transform - pos: 4.5,2.5 + pos: -7.5,-1.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 253 + - uid: 472 components: - type: Transform - pos: 4.5,1.5 + pos: -7.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 254 + - uid: 473 components: - type: Transform - pos: 4.5,0.5 + pos: -7.5,0.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 256 + - uid: 474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-1.5 + pos: -7.5,1.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 258 + - uid: 475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 + pos: -6.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 261 + - uid: 476 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 + pos: -5.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 262 + - uid: 477 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-1.5 + pos: -4.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 263 + - uid: 478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-1.5 + pos: -3.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 264 + - uid: 480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-1.5 + pos: -3.5,-1.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 266 + - uid: 481 components: - type: Transform - pos: -2.5,-2.5 + pos: -3.5,-2.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 267 + - uid: 482 components: - type: Transform - pos: -2.5,-3.5 + pos: -3.5,-3.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 268 + - uid: 483 components: - type: Transform - pos: -2.5,-0.5 + pos: -4.5,-3.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 270 + - uid: 484 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,0.5 + pos: -5.5,-3.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 271 + - uid: 485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,0.5 + pos: -6.5,-3.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 272 + - uid: 486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,0.5 + pos: -6.5,-4.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 273 + - uid: 487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,0.5 + pos: -6.5,-5.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 274 + - uid: 488 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,0.5 + pos: -2.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 276 + - uid: 489 components: - type: Transform - pos: -8.5,-0.5 + pos: -1.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeTJunction - entities: - - uid: 227 + - uid: 490 components: - type: Transform - pos: -2.5,0.5 + pos: -0.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 228 + - uid: 491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 + pos: 0.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 230 + - uid: 492 components: - type: Transform - pos: -1.5,-0.5 + pos: 1.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 238 + - uid: 493 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-0.5 + pos: 1.5,0.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 255 + - uid: 544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 + pos: 2.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 265 + - uid: 545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 + pos: 3.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPort - entities: - - uid: 175 + - uid: 546 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-4.5 + pos: 4.5,-0.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasVentPump - entities: - - uid: 220 + - uid: 547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-2.5 + pos: 5.5,-0.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 278 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 221 + - uid: 548 components: - type: Transform - pos: -4.5,0.5 + pos: 6.5,-0.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 278 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 222 + - uid: 549 components: - type: Transform - pos: -9.5,0.5 + pos: 7.5,-0.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 278 + - uid: 550 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 551 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 552 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 466 + components: + - type: Transform + pos: -8.5,0.5 + parent: 1 +- proto: CarpetPurple + entities: + - uid: 392 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 393 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 4 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 15 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 16 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 23 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 1 + - uid: 24 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 1 + - uid: 50 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-0.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,3.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-1.5 + parent: 1 + - uid: 159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-0.5 + parent: 1 + - uid: 176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,3.5 + parent: 1 + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,0.5 + parent: 1 + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,3.5 + parent: 1 + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-2.5 + parent: 1 + - uid: 197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-0.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - uid: 212 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 399 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 400 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 403 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 412 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 413 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 2.5,2.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 416 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 + - uid: 417 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 418 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 419 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 420 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 460 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1 + - uid: 462 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 1 + - uid: 463 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 +- proto: CatwalkDarkTile + entities: + - uid: 138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 1 + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -12.5,-3.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 1 +- proto: CigaretteSpent + entities: + - uid: 382 + components: + - type: Transform + parent: 381 + - type: Physics + canCollide: False + - uid: 383 + components: + - type: Transform + parent: 381 + - type: Physics + canCollide: False + - uid: 384 + components: + - type: Transform + pos: -4.868744,-4.004287 + parent: 1 + - uid: 385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.6881886,-4.018175 + parent: 1 +- proto: Cobweb1 + entities: + - uid: 613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 +- proto: ComputerTabletopShuttle + entities: + - uid: 293 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 +- proto: ComputerTabletopStationRecords + entities: + - uid: 289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 +- proto: ConveyorBelt + entities: + - uid: 435 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 436 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 437 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 438 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 1 + - uid: 439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 1 + - uid: 440 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 1 + - uid: 441 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 1 + - uid: 442 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + - uid: 454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - uid: 455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - uid: 456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 457 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 458 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 1 + - uid: 459 + components: + - type: Transform + pos: 8.5,-1.5 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 444 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 +- proto: DisposalUnit + entities: + - uid: 174 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 +- proto: DrinkBeerCan + entities: + - uid: 386 + components: + - type: Transform + pos: -5.1026096,-4.74387 + parent: 1 + - uid: 387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.4255276,-4.941787 + parent: 1 +- proto: DrinkHotCoffee + entities: + - uid: 378 + components: + - type: Transform + pos: -0.89964485,-2.5661068 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 1 + - uid: 598 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: -7.5,-3.5 + parent: 1 + - uid: 600 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 1 + - uid: 601 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,0.5 + parent: 1 + - uid: 602 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 603 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 +- proto: FaxMachineShip + entities: + - uid: 284 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 +- proto: FirelockGlass + entities: + - uid: 12 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 14 + - uid: 107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 14 + - uid: 165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 14 + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 14 + - uid: 216 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 14 + - uid: 217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 14 + - uid: 229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 14 +- proto: GasMixerOnFlipped + entities: + - uid: 294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPassiveVent + entities: + - uid: 334 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 295 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 306 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 315 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 329 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeBendAlt1 + entities: + - uid: 339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 340 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 354 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBendAlt2 + entities: + - uid: 300 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeManifold + entities: + - uid: 304 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 299 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 307 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 309 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 313 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 314 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 319 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 321 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 323 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 324 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraightAlt1 + entities: + - uid: 335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 342 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 343 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 344 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 345 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 349 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 350 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 352 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 353 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 358 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 359 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraightAlt2 + entities: + - uid: 301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunction + entities: + - uid: 296 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 298 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunctionAlt1 + entities: + - uid: 341 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 346 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 351 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 13 + components: + - type: Transform + pos: -5.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 22 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 316 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 14 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 317 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,-1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 14 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 318 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 14 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 223 + color: '#0055CCFF' + - uid: 325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,0.5 + pos: -1.5,-2.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 14 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 326 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 14 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 328 + components: + - type: Transform + pos: -2.5,0.5 parent: 1 - type: DeviceNetwork deviceLists: - - 278 + - 14 - type: AtmosPipeColor - color: '#0000FFFF' + color: '#0055CCFF' - proto: GasVentScrubber entities: - - uid: 224 + - uid: 320 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-4.5 + rot: 1.5707963267948966 rad + pos: -7.5,-4.5 parent: 1 - type: DeviceNetwork deviceLists: - - 278 + - 14 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 225 + color: '#990000FF' + - uid: 327 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-1.5 + pos: -11.5,-3.5 parent: 1 - type: DeviceNetwork deviceLists: - - 278 + - 14 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 226 + color: '#990000FF' + - uid: 330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-1.5 + rot: 3.141592653589793 rad + pos: -1.5,-4.5 parent: 1 - type: DeviceNetwork deviceLists: - - 278 + - 14 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 269 + color: '#990000FF' + - uid: 331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 14 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 332 components: - type: Transform - rot: -1.5707963267948966 rad pos: -1.5,0.5 parent: 1 - type: DeviceNetwork deviceLists: - - 278 + - 14 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 14 + - type: AtmosPipeLayers + pipeLayer: Secondary - type: AtmosPipeColor - color: '#FF0000FF' + color: '#990000FF' - proto: GravityGeneratorMini entities: - - uid: 349 + - uid: 8 components: - type: Transform - pos: -3.5,0.5 + pos: -7.5,-1.5 parent: 1 -- proto: Gyroscope +- proto: Grille entities: - - uid: 250 + - uid: 49 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 52 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,0.5 + pos: 0.5,-4.5 parent: 1 -- proto: HamtrCentralElectronics - entities: - - uid: 393 + - uid: 54 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 141 components: - type: Transform - pos: 2.6718006,-3.706478 + pos: -6.5,1.5 parent: 1 -- proto: HamtrHarness - entities: - - uid: 388 + - uid: 144 components: - type: Transform - pos: 8.365942,0.5144205 + pos: -8.5,-5.5 parent: 1 -- proto: HamtrLArm - entities: - - uid: 390 + - uid: 149 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 235 + components: + - type: Transform + pos: 11.5,1.5 + parent: 1 + - uid: 248 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: 11.5,-2.5 + parent: 1 + - uid: 262 components: - type: Transform - pos: 8.740942,0.4831705 + pos: 11.5,-0.5 parent: 1 -- proto: HamtrLLeg +- proto: GrilleBroken entities: - - uid: 389 + - uid: 3 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-1.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 11.5,-1.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,2.5 + parent: 1 + - uid: 168 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 246 components: - type: Transform - pos: 8.631567,0.21754551 + rot: 3.141592653589793 rad + pos: 11.5,0.5 parent: 1 -- proto: HamtrPeripheralsElectronics +- proto: GrilleDiagonal entities: - - uid: 394 + - uid: 61 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 1 + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -12.5,-0.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,2.5 + parent: 1 + - uid: 257 components: - type: Transform - pos: 2.6677418,3.3298354 + pos: -10.5,3.5 parent: 1 -- proto: HamtrRArm +- proto: Gyroscope entities: - - uid: 392 + - uid: 443 components: - type: Transform - pos: 8.037817,0.4987955 + pos: -0.5,-3.5 parent: 1 -- proto: HamtrRLeg +- proto: LightTubeCrystalOrange + entities: + - uid: 110 + components: + - type: Transform + parent: 53 + - type: Physics + canCollide: False + - uid: 234 + components: + - type: Transform + parent: 230 + - type: Physics + canCollide: False +- proto: LockerWallEVAColorSalvageFilled entities: + - uid: 390 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 - uid: 391 components: - type: Transform - pos: 8.178442,0.23317051 + pos: -1.5,1.5 + parent: 1 + - uid: 449 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + - uid: 450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 parent: 1 -- proto: LockerSalvageSpecialistFilledHardsuit +- proto: LockerWallMaterialsFuelUraniumFilled entities: - - uid: 189 + - uid: 211 components: - type: Transform - pos: -9.5,0.5 + pos: -8.5,1.5 parent: 1 - - uid: 196 +- proto: MachineFrame + entities: + - uid: 426 components: - type: Transform - pos: -9.5,-1.5 + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 parent: 1 - - uid: 197 + - uid: 427 components: - type: Transform - pos: -9.5,-0.5 + rot: -1.5707963267948966 rad + pos: 1.5,0.5 parent: 1 - - uid: 202 +- proto: MachineMaterialSilo + entities: + - uid: 428 components: - type: Transform - pos: -9.5,-2.5 + pos: 8.5,0.5 parent: 1 - proto: MaterialReclaimer entities: - - uid: 148 + - uid: 51 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 380 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 +- proto: MiningWindow + entities: + - uid: 71 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -8.5,-5.5 + parent: 1 + - uid: 119 components: - type: Transform - pos: 3.5,-0.5 + pos: -5.5,1.5 parent: 1 -- proto: MechEquipmentGrabberSmall - entities: - - uid: 395 + - uid: 154 components: - type: Transform - pos: -7.7292404,-1.1585989 + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 parent: 1 -- proto: MopItem - entities: - - uid: 217 + - uid: 155 components: - type: Transform - pos: -7.3930492,-1.4041767 + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 parent: 1 -- proto: Multitool - entities: - - uid: 153 + - uid: 245 components: - type: Transform - pos: 7.1284747,-0.13051319 + rot: -1.5707963267948966 rad + pos: -1.5,-5.5 parent: 1 -- proto: OreProcessor - entities: - - uid: 147 + - uid: 267 components: - type: Transform - pos: 1.5,0.5 + pos: -6.5,1.5 parent: 1 -- proto: Paper +- proto: NFAshtray entities: - uid: 381 components: - type: Transform - pos: -1.8208151,-2.534336 - parent: 1 -- proto: PersonalAI + pos: -4.993744,-4.1570644 + parent: 1 + - type: Storage + storedItems: + 382: + position: 0,0 + _rotation: South + 383: + position: 1,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 382 + - 383 +- proto: NFMagnetBoxOre entities: - - uid: 386 + - uid: 287 components: - type: Transform - pos: 5.3883457,3.1943893 + pos: 8.5,-0.5 parent: 1 -- proto: PlushieAbductorAgent + - type: Conveyed +- proto: NitrogenCanister entities: - - uid: 198 + - uid: 222 components: - type: Transform - pos: 10.587168,-0.6122265 + pos: -6.5,0.5 parent: 1 -- proto: PlushieLizardMirrored +- proto: OreBag entities: - - uid: 384 + - uid: 452 components: - type: Transform - pos: 4.1797886,-4.3199673 + pos: 5.5385704,-1.6557636 parent: 1 -- proto: PortableGeneratorPacman - entities: - - uid: 9 + - uid: 453 components: - type: Transform - pos: -0.5,-4.5 + pos: 5.5385704,-1.4682636 parent: 1 -- proto: PosterContrabandTheBigGasTruth +- proto: OreProcessor entities: - - uid: 356 + - uid: 429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-3.5 + pos: 6.5,0.5 parent: 1 -- proto: PosterLegitDontPanic +- proto: OxygenCanister entities: - - uid: 357 + - uid: 266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-2.5 + pos: -5.5,0.5 parent: 1 -- proto: PosterLegitThereIsNoGasGiant +- proto: PaperBin5 entities: - - uid: 355 + - uid: 286 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-3.5 + pos: -0.5,-4.5 parent: 1 -- proto: Poweredlight +- proto: Pen entities: - - uid: 161 + - uid: 379 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-3.5 + pos: -0.9594307,-4.315963 parent: 1 - - uid: 335 +- proto: Pickaxe + entities: + - uid: 269 components: - type: Transform - pos: -4.5,0.5 + parent: 5 + - type: Physics + canCollide: False +- proto: PlushieMoffRandom + entities: + - uid: 612 + components: + - type: Transform + pos: -0.23511696,2.7500095 parent: 1 - - uid: 336 +- proto: PortableGeneratorSuperPacmanShuttle + entities: + - uid: 225 components: - type: Transform pos: -8.5,0.5 parent: 1 - - uid: 337 +- proto: PosterContrabandMoth + entities: + - uid: 611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-4.5 + pos: -0.5,3.5 parent: 1 - - uid: 338 +- proto: Poweredlight + entities: + - uid: 587 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-4.5 + pos: -6.5,-0.5 parent: 1 - - uid: 339 + - uid: 588 components: - type: Transform - pos: 2.5,0.5 + pos: -11.5,-2.5 parent: 1 - - uid: 340 + - uid: 589 components: - type: Transform - pos: 7.5,0.5 + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 parent: 1 - - uid: 341 + - uid: 590 components: - type: Transform pos: -1.5,-2.5 parent: 1 - - uid: 342 + - uid: 591 components: - type: Transform pos: -0.5,0.5 parent: 1 - - uid: 343 + - uid: 592 components: - type: Transform - pos: 2.5,-3.5 + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 parent: 1 - - uid: 344 + - uid: 595 components: - type: Transform - pos: 7.5,-3.5 + pos: -8.5,-3.5 parent: 1 - - uid: 345 + - uid: 596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-2.5 + rot: 3.141592653589793 rad + pos: 1.5,-1.5 parent: 1 - - uid: 346 +- proto: PoweredlightOrange + entities: + - uid: 422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,1.5 + rot: 3.141592653589793 rad + pos: -3.5,2.5 parent: 1 - - uid: 347 + - uid: 423 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,2.5 + pos: -10.5,0.5 parent: 1 - - uid: 348 + - uid: 424 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,2.5 + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 parent: 1 -- proto: Rack - entities: - - uid: 203 + - uid: 593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,0.5 + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 parent: 1 -- proto: RadioHandheld - entities: - - uid: 380 + - uid: 594 components: - type: Transform - pos: -1.2023268,-2.5790062 + rot: -1.5707963267948966 rad + pos: 4.5,2.5 parent: 1 -- proto: Railing +- proto: PoweredLightPostSmallEmpty entities: - - uid: 124 + - uid: 53 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,2.5 + pos: 11.5,-1.5 parent: 1 - - uid: 126 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 110 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False + - uid: 230 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,3.5 + pos: 11.5,0.5 parent: 1 - - uid: 127 + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 234 + - type: ApcPowerReceiver + powerLoad: 60 + - type: DamageOnInteract + isDamageActive: False +- proto: Rack + entities: + - uid: 451 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,3.5 + pos: 5.5,-1.5 parent: 1 - - uid: 128 +- proto: RandomPosterLegit + entities: + - uid: 604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,2.5 + pos: -10.5,-5.5 parent: 1 - - uid: 129 + - uid: 605 components: - type: Transform - pos: 3.5,-4.5 + pos: -6.5,-2.5 parent: 1 - - uid: 130 + - uid: 606 components: - type: Transform - pos: 6.5,-4.5 + pos: -2.5,-4.5 parent: 1 - - uid: 131 + - uid: 607 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-3.5 + pos: 0.5,-2.5 parent: 1 - - uid: 132 + - uid: 608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-3.5 + pos: -9.5,0.5 parent: 1 -- proto: RailingCorner - entities: - - uid: 118 + - uid: 609 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 + pos: 0.5,0.5 parent: 1 - - uid: 119 + - uid: 610 components: - type: Transform - pos: 7.5,-4.5 + pos: 8.5,-2.5 parent: 1 - - uid: 120 +- proto: RandomSpawner + entities: + - uid: 388 components: - type: Transform - pos: 11.5,-2.5 + rot: -1.5707963267948966 rad + pos: -3.5,-3.5 parent: 1 - - uid: 121 + - uid: 389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,1.5 + rot: -1.5707963267948966 rad + pos: -11.5,-3.5 parent: 1 - - uid: 122 +- proto: SalvageTechfabNF + entities: + - uid: 431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,3.5 + pos: 8.5,-1.5 parent: 1 - - uid: 123 +- proto: ScrapProcessor + entities: + - uid: 433 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,3.5 + pos: 7.5,0.5 parent: 1 -- proto: RandomPosterAny +- proto: SignalButtonWindows entities: - - uid: 350 + - uid: 377 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,1.5 + pos: -1.5,-4.5 parent: 1 - - uid: 352 + - type: DeviceLinkSource + linkedPorts: + 373: + - - Pressed + - Toggle + 255: + - - Pressed + - Toggle + 374: + - - Pressed + - Toggle + 375: + - - Pressed + - Toggle + - uid: 447 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-4.5 + pos: 5.749957,-2.4994297 parent: 1 - - uid: 378 - components: - - type: Transform - pos: 7.5,1.5 - parent: 1 -- proto: RandomPosterContraband - entities: - - uid: 351 + - type: DeviceLinkSource + linkedPorts: + 457: + - - Pressed + - Forward + 458: + - - Pressed + - Forward + 459: + - - Pressed + - Forward + - uid: 448 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,1.5 + pos: 5.249957,-2.4994297 parent: 1 - - uid: 354 + - type: DeviceLinkSource + linkedPorts: + 454: + - - Pressed + - Forward + 455: + - - Pressed + - Forward + 456: + - - Pressed + - Forward + - uid: 585 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-2.5 + pos: 3.5,0.5 parent: 1 - - uid: 377 + - type: DeviceLinkSource + linkedPorts: + 370: + - - Pressed + - Toggle + 371: + - - Pressed + - Toggle + 372: + - - Pressed + - Toggle + - uid: 586 components: - type: Transform - pos: -2.5,-5.5 + pos: 3.5,-1.5 parent: 1 -- proto: RandomPosterLegit + - type: DeviceLinkSource + linkedPorts: + 367: + - - Pressed + - Toggle + 369: + - - Pressed + - Toggle + 368: + - - Pressed + - Toggle +- proto: SMESBasic entities: - - uid: 353 + - uid: 221 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-0.5 + pos: -8.5,-0.5 parent: 1 -- proto: RandomSpawner +- proto: SpawnPointContractor entities: - - uid: 362 - components: - - type: Transform - pos: 3.5,-3.5 - parent: 1 - - uid: 363 - components: - - type: Transform - pos: 6.5,-3.5 - parent: 1 - - uid: 364 - components: - - type: Transform - pos: 10.5,-1.5 - parent: 1 - - uid: 365 - components: - - type: Transform - pos: 10.5,0.5 - parent: 1 - - uid: 366 - components: - - type: Transform - pos: 3.5,2.5 - parent: 1 - - uid: 367 - components: - - type: Transform - pos: 6.5,2.5 - parent: 1 - - uid: 369 + - uid: 292 components: - type: Transform - pos: 7.5,-1.5 + pos: -4.5,-4.5 parent: 1 - - uid: 370 +- proto: SpawnPointMercenary + entities: + - uid: 291 components: - type: Transform - pos: 2.5,-0.5 + pos: -3.5,-4.5 parent: 1 - - uid: 371 +- proto: SpawnPointPilot + entities: + - uid: 290 components: - type: Transform - pos: -2.5,0.5 + pos: -4.5,-4.5 parent: 1 - - uid: 372 +- proto: StairBridge + entities: + - uid: 58 components: - type: Transform - pos: -2.5,-2.5 + rot: 1.5707963267948966 rad + pos: 10.5,-2.5 parent: 1 - - uid: 373 + - uid: 60 components: - type: Transform - pos: -8.5,-1.5 + rot: 3.141592653589793 rad + pos: -7.5,2.5 parent: 1 - - uid: 374 + - uid: 62 components: - type: Transform - pos: -9.5,-4.5 + rot: 3.141592653589793 rad + pos: -9.5,2.5 parent: 1 - - uid: 375 + - uid: 66 components: - type: Transform - pos: -5.5,-4.5 + rot: 1.5707963267948966 rad + pos: 10.5,-0.5 parent: 1 - - uid: 376 + - uid: 172 components: - type: Transform - pos: -5.5,-0.5 + rot: 1.5707963267948966 rad + pos: 10.5,1.5 parent: 1 -- proto: SalvageTechfabNF +- proto: StairDark entities: - - uid: 211 + - uid: 21 components: - type: Transform - pos: -7.5,-2.5 + rot: 1.5707963267948966 rad + pos: -8.5,-4.5 parent: 1 -- proto: SheetGlass - entities: - - uid: 215 + - uid: 150 components: - type: Transform - pos: -7.6194572,-2.6938353 + rot: -1.5707963267948966 rad + pos: -10.5,-3.5 parent: 1 -- proto: SheetPlasma - entities: - - uid: 6 + - uid: 151 components: - type: Transform - pos: -0.596447,-4.4514627 + rot: -1.5707963267948966 rad + pos: -10.5,-4.5 parent: 1 -- proto: SheetPlastic - entities: - - uid: 214 + - uid: 152 components: - type: Transform - pos: -7.7288322,-2.2719603 + rot: 1.5707963267948966 rad + pos: -8.5,-3.5 parent: 1 -- proto: SheetSteel - entities: - - uid: 213 + - uid: 265 components: - type: Transform - pos: -7.3694572,-2.3813353 + pos: -3.5,-2.5 parent: 1 -- proto: SignalButton - entities: - - uid: 55 + - uid: 272 components: - type: Transform - pos: 2.5,1.5 + rot: 3.141592653589793 rad + pos: -5.5,-1.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 41: - - Pressed: Toggle - 40: - - Pressed: Toggle - 39: - - Pressed: Toggle - 38: - - Pressed: Toggle - - uid: 56 +- proto: SteelBench + entities: + - uid: 432 components: - type: Transform - pos: 8.5,1.5 + rot: 3.141592653589793 rad + pos: 6.5,-1.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 46: - - Pressed: Toggle - 36: - - Pressed: Toggle - 37: - - Pressed: Toggle - - uid: 57 + - uid: 434 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-2.5 + pos: 7.5,-1.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 34: - - Pressed: Toggle - 43: - - Pressed: Toggle - 35: - - Pressed: Toggle - 42: - - Pressed: Toggle -- proto: SignNTMine +- proto: StructureMeleeWeaponRackSalvage entities: - - uid: 361 + - uid: 5 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-5.5 + pos: -0.5,0.5 parent: 1 -- proto: SinkWide + - type: ContainerContainer + containers: + weapon1: !type:ContainerSlot + showEnts: False + occludes: True + ent: 269 + weapon2: !type:ContainerSlot + showEnts: False + occludes: True + ent: 277 + weapon3: !type:ContainerSlot + showEnts: False + occludes: True + ent: 278 + weapon4: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon5: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: SubstationBasic entities: - - uid: 219 + - uid: 18 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-1.5 + pos: -8.5,-1.5 parent: 1 -- proto: SpawnMobCleanBot +- proto: TableCounterMetal entities: - - uid: 368 + - uid: 425 components: - type: Transform + rot: -1.5707963267948966 rad pos: 5.5,0.5 parent: 1 -- proto: SpawnPointContractor +- proto: TableReinforced entities: - - uid: 154 + - uid: 263 components: - type: Transform - pos: -8.5,-0.5 + pos: -1.5,-2.5 parent: 1 - - uid: 358 + - uid: 283 components: - type: Transform - pos: -8.5,0.5 + pos: -0.5,-4.5 parent: 1 -- proto: SpawnPointLatejoin - entities: - - uid: 398 + - uid: 285 components: - type: Transform - pos: -2.5,-0.5 + pos: -0.5,-2.5 parent: 1 -- proto: SpawnPointMercenary + - uid: 288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 +- proto: ThrusterMedium entities: - - uid: 387 + - uid: 104 components: - type: Transform - pos: -8.5,-1.5 + rot: 1.5707963267948966 rad + pos: -11.5,-0.5 parent: 1 - - uid: 397 + - uid: 116 components: - type: Transform - pos: -8.5,-2.5 + pos: 6.5,3.5 parent: 1 -- proto: SpawnPointPilot + - uid: 240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 1 +- proto: ThrusterMediumLong entities: - - uid: 359 + - uid: 199 components: - type: Transform - pos: -2.5,-3.5 + rot: -1.5707963267948966 rad + pos: -2.5,2.5 parent: 1 -- proto: SubstationBasic +- proto: VendingMachineTankDispenserEVA entities: - - uid: 159 + - uid: 282 components: - type: Transform - pos: -3.5,-4.5 + pos: -11.5,-2.5 parent: 1 -- proto: Table +- proto: WallMining entities: - - uid: 178 + - uid: 20 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-2.5 + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 parent: 1 - - uid: 179 + - uid: 43 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-2.5 + pos: -1.5,3.5 parent: 1 - - uid: 180 + - uid: 70 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-3.5 + pos: -3.5,-5.5 parent: 1 - - uid: 181 + - uid: 91 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-3.5 + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 parent: 1 - - uid: 182 + - uid: 93 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-2.5 + rot: 1.5707963267948966 rad + pos: -10.5,-1.5 parent: 1 -- proto: Thruster - entities: - - uid: 231 + - uid: 94 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-3.5 + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 parent: 1 - - uid: 244 + - uid: 97 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-3.5 + pos: -1.5,-1.5 parent: 1 - - uid: 245 + - uid: 98 components: - type: Transform + rot: 3.141592653589793 rad pos: 8.5,2.5 parent: 1 - - uid: 246 + - uid: 99 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,2.5 + rot: -1.5707963267948966 rad + pos: -9.5,-0.5 parent: 1 - - type: ApcPowerReceiver - powerLoad: 1 - - uid: 247 + - uid: 100 components: - type: Transform - pos: 1.5,2.5 + rot: 1.5707963267948966 rad + pos: -11.5,-1.5 parent: 1 - - uid: 248 + - uid: 101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,2.5 + rot: 1.5707963267948966 rad + pos: -12.5,-1.5 parent: 1 - - uid: 249 + - uid: 102 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-3.5 + pos: -8.5,-2.5 parent: 1 - - uid: 402 + - uid: 105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,2.5 + pos: -9.5,-1.5 parent: 1 - - uid: 403 + - uid: 106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,2.5 + pos: -9.5,1.5 parent: 1 -- proto: TwoWayLever - entities: - - uid: 152 + - uid: 111 components: - type: Transform - pos: 7.5,-0.5 + pos: -10.5,-5.5 parent: 1 -- proto: VendingMachineCola - entities: - - uid: 218 + - uid: 112 components: - type: Transform - pos: -5.5,0.5 + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 parent: 1 -- proto: VendingMachineSalvage - entities: - - uid: 212 + - uid: 113 components: - type: Transform - pos: -7.5,-0.5 + pos: -11.5,-5.5 parent: 1 -- proto: WallMining - entities: - - uid: 2 + - uid: 114 components: - type: Transform - pos: -10.5,-2.5 + rot: -1.5707963267948966 rad + pos: -9.5,0.5 parent: 1 - - uid: 10 + - uid: 115 components: - type: Transform - pos: -0.5,-5.5 + pos: -6.5,-5.5 parent: 1 - - uid: 11 + - uid: 117 components: - type: Transform - pos: -1.5,-5.5 + pos: 0.5,2.5 parent: 1 - - uid: 12 + - uid: 118 components: - type: Transform - pos: -2.5,-5.5 + rot: -1.5707963267948966 rad + pos: -8.5,1.5 parent: 1 - - uid: 13 + - uid: 120 components: - type: Transform - pos: -3.5,-5.5 + rot: -1.5707963267948966 rad + pos: 5.5,1.5 parent: 1 - - uid: 14 + - uid: 121 components: - type: Transform - pos: -4.5,-5.5 + rot: -1.5707963267948966 rad + pos: 6.5,1.5 parent: 1 - - uid: 15 + - uid: 122 components: - type: Transform - pos: -5.5,-5.5 + rot: -1.5707963267948966 rad + pos: -7.5,1.5 parent: 1 - - uid: 16 + - uid: 123 components: - type: Transform - pos: 0.5,-4.5 + rot: -1.5707963267948966 rad + pos: -2.5,-2.5 parent: 1 - - uid: 17 + - uid: 124 components: - type: Transform - pos: -7.5,-5.5 + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 parent: 1 - - uid: 18 + - uid: 125 components: - type: Transform - pos: 0.5,-3.5 + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 parent: 1 - - uid: 19 + - uid: 126 components: - type: Transform - pos: 0.5,-2.5 + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 parent: 1 - - uid: 20 + - uid: 127 components: - type: Transform - pos: 0.5,-1.5 + pos: -6.5,-1.5 parent: 1 - - uid: 21 + - uid: 128 components: - type: Transform - pos: 0.5,1.5 + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 parent: 1 - - uid: 22 + - uid: 129 components: - type: Transform + rot: -1.5707963267948966 rad pos: -0.5,1.5 parent: 1 - - uid: 23 + - uid: 130 components: - type: Transform - pos: -1.5,1.5 + rot: -1.5707963267948966 rad + pos: 1.5,1.5 parent: 1 - - uid: 24 + - uid: 131 components: - type: Transform - pos: -2.5,1.5 + rot: -1.5707963267948966 rad + pos: 0.5,1.5 parent: 1 - - uid: 25 + - uid: 132 components: - type: Transform - pos: -3.5,1.5 + rot: -1.5707963267948966 rad + pos: -1.5,1.5 parent: 1 - - uid: 26 + - uid: 133 components: - type: Transform - pos: -4.5,1.5 + rot: -1.5707963267948966 rad + pos: -3.5,1.5 parent: 1 - - uid: 27 + - uid: 134 components: - type: Transform - pos: -5.5,1.5 + rot: -1.5707963267948966 rad + pos: 0.5,0.5 parent: 1 - - uid: 28 + - uid: 135 components: - type: Transform - pos: -6.5,1.5 + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 parent: 1 - - uid: 29 + - uid: 136 components: - type: Transform - pos: -7.5,1.5 + pos: 9.5,-0.5 parent: 1 - - uid: 30 + - uid: 137 components: - type: Transform - pos: -8.5,1.5 + rot: -1.5707963267948966 rad + pos: 9.5,1.5 parent: 1 - - uid: 31 + - uid: 140 components: - type: Transform - pos: 1.5,-2.5 + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 parent: 1 - - uid: 32 + - uid: 143 components: - type: Transform - pos: 2.5,-2.5 + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 parent: 1 - - uid: 33 + - uid: 148 components: - type: Transform - pos: 1.5,1.5 + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 parent: 1 - - uid: 47 + - uid: 160 components: - type: Transform - pos: 2.5,1.5 + pos: -0.5,3.5 parent: 1 - - uid: 48 + - uid: 178 components: - type: Transform - pos: 7.5,1.5 + pos: -4.5,-5.5 parent: 1 - - uid: 49 + - uid: 205 components: - type: Transform - pos: 8.5,1.5 + rot: -1.5707963267948966 rad + pos: 0.5,-2.5 parent: 1 - - uid: 50 + - uid: 206 components: - type: Transform - pos: 9.5,1.5 + pos: -9.5,-5.5 parent: 1 - - uid: 51 + - uid: 209 components: - type: Transform - pos: 9.5,-2.5 + rot: -1.5707963267948966 rad + pos: -9.5,-2.5 parent: 1 - - uid: 52 + - uid: 213 components: - type: Transform - pos: 8.5,-2.5 + pos: -3.5,0.5 parent: 1 - - uid: 53 + - uid: 232 components: - type: Transform - pos: 7.5,-2.5 + rot: -1.5707963267948966 rad + pos: -2.5,1.5 parent: 1 - - uid: 54 + - uid: 233 components: - type: Transform - pos: -9.5,1.5 + pos: -4.5,0.5 parent: 1 - - uid: 157 + - uid: 236 components: - type: Transform - pos: -10.5,-1.5 + rot: 3.141592653589793 rad + pos: 8.5,-3.5 parent: 1 - - uid: 158 + - uid: 237 components: - type: Transform - pos: -10.5,-4.5 + pos: 9.5,-1.5 parent: 1 - - uid: 160 + - uid: 239 components: - type: Transform - pos: -9.5,-5.5 + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 parent: 1 - - uid: 162 + - uid: 241 components: - type: Transform - pos: -10.5,-3.5 + rot: -1.5707963267948966 rad + pos: 7.5,1.5 parent: 1 - - uid: 163 + - uid: 242 components: - type: Transform - pos: -10.5,-0.5 + rot: -1.5707963267948966 rad + pos: -4.5,1.5 parent: 1 - - uid: 164 + - uid: 243 components: - type: Transform - pos: -10.5,0.5 + rot: 1.5707963267948966 rad + pos: 5.5,2.5 parent: 1 - - uid: 165 + - uid: 244 components: - type: Transform - pos: -4.5,-4.5 + rot: -1.5707963267948966 rad + pos: 8.5,1.5 parent: 1 - - uid: 166 + - uid: 247 components: - type: Transform - pos: -1.5,-1.5 + rot: 3.141592653589793 rad + pos: 5.5,-3.5 parent: 1 - - uid: 167 + - uid: 252 components: - type: Transform - pos: -0.5,-1.5 + rot: 3.141592653589793 rad + pos: 5.5,-4.5 parent: 1 - - uid: 168 + - uid: 253 components: - type: Transform - pos: -4.5,-2.5 + rot: -1.5707963267948966 rad + pos: -0.5,-1.5 parent: 1 - - uid: 169 + - uid: 256 components: - type: Transform - pos: -3.5,-1.5 + rot: -1.5707963267948966 rad + pos: -4.5,-1.5 parent: 1 - - uid: 187 + - uid: 276 components: - type: Transform - pos: 0.5,0.5 + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 parent: 1 - - uid: 190 + - uid: 279 components: - type: Transform - pos: -4.5,-3.5 + pos: -5.5,-5.5 parent: 1 - - uid: 191 + - uid: 280 components: - type: Transform - pos: -4.5,-1.5 + pos: 9.5,0.5 parent: 1 - - uid: 192 +- proto: WallMiningDiagonal + entities: + - uid: 44 components: - type: Transform - pos: -6.5,0.5 + pos: -2.5,3.5 parent: 1 - - uid: 194 + - uid: 47 components: - type: Transform - pos: -6.5,-0.5 + pos: -4.5,2.5 parent: 1 - - uid: 195 + - uid: 95 components: - type: Transform - pos: -6.5,-1.5 + pos: 5.5,3.5 parent: 1 - - uid: 199 + - uid: 109 components: - type: Transform - pos: -6.5,-2.5 + rot: 1.5707963267948966 rad + pos: -12.5,-5.5 parent: 1 - - uid: 200 + - uid: 139 components: - type: Transform - pos: -6.5,-3.5 + pos: -10.5,1.5 parent: 1 - - uid: 201 + - uid: 142 components: - type: Transform - pos: -9.5,-3.5 + rot: 3.141592653589793 rad + pos: 0.5,-5.5 parent: 1 - - uid: 208 + - uid: 145 components: - type: Transform - pos: -7.5,-3.5 + rot: -1.5707963267948966 rad + pos: 9.5,2.5 parent: 1 -- proto: WallMiningDiagonal - entities: - - uid: 3 + - uid: 146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-5.5 + rot: 3.141592653589793 rad + pos: 9.5,-3.5 parent: 1 - - uid: 8 + - uid: 251 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-5.5 + rot: -1.5707963267948966 rad + pos: 0.5,3.5 parent: 1 - - uid: 360 + - uid: 260 components: - type: Transform - pos: -10.5,1.5 + rot: 1.5707963267948966 rad + pos: 5.5,-5.5 parent: 1 - - uid: 400 + - uid: 261 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,2.5 + rot: 3.141592653589793 rad + pos: 8.5,-4.5 parent: 1 - - uid: 401 +- proto: WarpPoint + entities: + - uid: 10 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,2.5 + pos: -1.5,-3.5 parent: 1 -- proto: WarpPointShip +- proto: WeaponCrusher entities: - - uid: 399 + - uid: 278 components: - type: Transform - pos: 1.5,-0.5 - parent: 1 -- proto: WeaponProtoKineticAcceleratorSawn + parent: 5 + - type: Physics + canCollide: False +- proto: WeaponCrusherGlaive entities: - - uid: 385 + - uid: 277 components: - type: Transform - pos: 4.7110386,-4.3668423 - parent: 1 -- proto: Wrench + parent: 5 + - type: Physics + canCollide: False +- proto: WindowFrostedDirectional entities: - - uid: 177 + - uid: 581 components: - type: Transform - pos: -2.641838,-4.4071217 + pos: -10.5,-2.5 parent: 1 ... diff --git a/Resources/Maps/_Forge/Shuttles/Science/antimony.yml b/Resources/Maps/_Forge/Shuttles/Science/antimony.yml new file mode 100644 index 000000000000..741e6272c3c0 --- /dev/null +++ b/Resources/Maps/_Forge/Shuttles/Science/antimony.yml @@ -0,0 +1,2187 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 02/02/2026 08:29:51 + entityCount: 287 +maps: [] +grids: +- 1834 +orphans: +- 1834 +nullspace: [] +tilemap: + 2: Space + 21: FloorConcrete + 17: FloorDarkOffset + 19: FloorDarkPavementVertical + 25: FloorElevatorShaft + 0: FloorGlass + 8: FloorHullReinforced + 20: FloorHydro + 4: FloorLino + 22: FloorMetalDiamond + 15: FloorMining + 7: FloorMiningDark + 6: FloorMiningLight + 3: FloorPlastic + 5: FloorRGlass + 16: FloorShuttleBlack + 13: FloorSteel + 12: FloorSteelCheckerLight + 9: FloorSteelMono + 14: FloorSteelPavement + 18: FloorTechMaint + 24: FloorWood + 10: FloorWoodLarge + 11: FloorWoodTile + 23: Lattice + 1: Plating +entities: +- proto: "" + entities: + - uid: 1834 + components: + - type: MetaData + name: grid + - type: Transform + pos: 7.5455256,-53.726746 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AgAAAAAAAAEAAAAAAAAZAAAAAAAAGQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAACAAAAAAAABwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAABwAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABkAAAAAAAAZAAAAAAAAGQAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAAAFgAAAAAAABYAAAAAAAAZAAAAAAAABwAAAAAAAAcAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAABYAAAAAAAAWAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAcAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAAAAQAAAAAAABkAAAAAAAAHAAAAAAAAAQAAAAAAAAcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAXAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + - 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 + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#334E6DC8' + id: BotGreyscale + decals: + 1: 3,-6 + - node: + color: '#79150096' + id: BotGreyscale + decals: + 2: 4,-6 + - node: + color: '#8D1C9996' + id: BotGreyscale + decals: + 3: 3,-1 + 4: 2,-1 + 5: 2,-6 + 6: 1,-6 + 7: 0,-8 + 8: 5,-8 + 9: 4,-9 + 10: 4,-8 + - node: + color: '#A4610696' + id: Delivery + decals: + 12: 1,-4 + 13: 1,-5 + 14: 2,-2 + 15: 2,-9 + 16: 1,-9 + 17: 3,-8 + 18: 3,-4 + 19: 4,-4 + - node: + color: '#A4610696' + id: LoadingAreaGreyscale + decals: + 21: 2,-8 + 22: 1,-8 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 12 + 0,-1: + 0: 52302 + 1: 4352 + 0,-3: + 1: 1 + 2: 2046 + -1,-3: + 2: 2184 + 0,-2: + 0: 61039 + -1,-2: + 1: 34816 + 0,-4: + 2: 57344 + 1,-4: + 2: 4096 + 1: 16384 + 1,-3: + 2: 49 + 0: 12288 + 1: 2 + 1,-2: + 0: 4355 + 1: 17408 + 1,-1: + 0: 1 + 1: 8704 + -1,-4: + 1: 32768 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: BecomesStation + id: Antimony +- proto: AirAlarm + entities: + - uid: 146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1834 + - type: DeviceList + devices: + - 107 + - 73 + - 137 + - 138 + - 74 + - 105 + - 106 + - 75 +- proto: AirlockExternal + entities: + - uid: 7 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1834 +- proto: AirlockGlassShuttle + entities: + - uid: 17 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1834 + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1834 +- proto: AirlockScienceGlass + entities: + - uid: 139 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 1834 +- proto: APCBasic + entities: + - uid: 35 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1834 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 3 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1834 + - uid: 4 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1834 + - uid: 1846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1834 + - uid: 1847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1834 +- proto: AtmosFixBlockerMarker + entities: + - uid: 148 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1834 + - uid: 149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1834 + - uid: 150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1834 + - uid: 151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1834 + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1834 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1834 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 1834 + - uid: 155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1834 + - uid: 156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-9.5 + parent: 1834 + - uid: 157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-10.5 + parent: 1834 + - uid: 158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 1834 + - uid: 159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 1834 + - uid: 160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 1834 + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 1834 + - uid: 162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 1834 + - uid: 163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 1834 + - uid: 164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 1834 + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 1834 + - uid: 166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1834 + - uid: 167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1834 + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 1834 + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 1834 + - uid: 170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-12.5 + parent: 1834 + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-12.5 + parent: 1834 + - uid: 172 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 1834 + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 1834 + - uid: 174 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 1834 + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 1834 + - uid: 176 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-11.5 + parent: 1834 + - uid: 177 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 1834 + - uid: 178 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 1834 + - uid: 179 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 1834 +- proto: BlastDoor + entities: + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 1834 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1834 +- proto: BlastDoorOpen + entities: + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 1834 + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 1834 + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1834 +- proto: ButtonFrameCaution + entities: + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1834 + - uid: 204 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1834 +- proto: CableApcExtension + entities: + - uid: 120 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1834 + - uid: 121 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1834 + - uid: 122 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1834 + - uid: 123 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1834 + - uid: 124 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1834 + - uid: 125 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1834 + - uid: 126 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 1834 + - uid: 127 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1834 + - uid: 128 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 1834 + - uid: 1852 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1834 + - uid: 1853 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1834 + - uid: 1854 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1834 + - uid: 1855 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1834 + - uid: 1856 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1834 + - uid: 1857 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1834 + - uid: 1858 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1834 + - uid: 1859 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1834 + - uid: 1860 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1834 + - uid: 1861 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1834 + - uid: 1862 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1834 + - uid: 1863 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1834 + - uid: 1864 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1834 + - uid: 1865 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1834 + - uid: 1866 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1834 + - uid: 1867 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1834 + - uid: 1873 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1834 + - uid: 1874 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1834 + - uid: 1875 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1834 + - uid: 1876 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1834 + - uid: 1877 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 1834 + - uid: 1878 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1834 + - uid: 1879 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1834 +- proto: CableHV + entities: + - uid: 63 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1834 + - uid: 1881 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1834 +- proto: CableMV + entities: + - uid: 31 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1834 + - uid: 41 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1834 + - uid: 72 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1834 + - uid: 88 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1834 + - uid: 129 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1834 + - uid: 1884 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1834 + - uid: 1885 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1834 +- proto: CarpetPurple + entities: + - uid: 130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1834 + - uid: 131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-7.5 + parent: 1834 + - uid: 132 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1834 +- proto: Catwalk + entities: + - uid: 5 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1834 + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 1834 + - uid: 9 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1834 + - uid: 15 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1834 + - uid: 24 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-11.5 + parent: 1834 + - uid: 25 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 1834 + - uid: 28 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1834 + - uid: 32 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 1834 + - uid: 33 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1834 + - uid: 34 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1834 + - uid: 42 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1834 + - uid: 43 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 1834 + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1834 + - uid: 48 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 1834 + - uid: 49 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1834 + - uid: 50 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 1834 + - uid: 52 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1834 + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1834 + - uid: 61 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 1834 + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1834 + - uid: 65 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1834 + - uid: 1886 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 1834 + - uid: 1891 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 1834 + - uid: 1892 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 1834 + - uid: 1893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 1834 + - uid: 1894 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1834 + - uid: 1895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 1834 + - uid: 1899 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1834 + - uid: 1900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 1834 + - uid: 1901 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 1834 + - uid: 1902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1834 + - uid: 1903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1834 + - uid: 1904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1834 + - uid: 1905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 1834 + - uid: 1906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 1834 + - uid: 1907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1834 + - uid: 1908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 1834 + - uid: 1909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 1834 + - uid: 1910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 1834 + - uid: 1911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 1834 +- proto: ChairPilotSeat + entities: + - uid: 20 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1834 +- proto: ComputerGunneryConsole + entities: + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1834 +- proto: ComputerTabletopShuttle + entities: + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1834 +- proto: ConveyorBelt + entities: + - uid: 98 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 1834 + - uid: 99 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 1834 + - uid: 100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 1834 + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 1834 + - uid: 102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1834 + - uid: 103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 1834 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 182 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1834 +- proto: EmergencyLight + entities: + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1834 + - uid: 197 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1834 + - uid: 198 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1834 + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1834 + - uid: 200 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1834 +- proto: FirelockGlass + entities: + - uid: 137 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1834 + - type: DeviceNetwork + deviceLists: + - 146 + - uid: 138 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-7.5 + parent: 1834 + - type: DeviceNetwork + deviceLists: + - 146 +- proto: GasMixerOnFlipped + entities: + - uid: 92 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1834 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPassiveVent + entities: + - uid: 112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1834 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 77 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 1834 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 78 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 1834 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 79 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1834 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1834 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeBendAlt1 + entities: + - uid: 118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1834 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 1834 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 76 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1834 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 81 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1834 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 82 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1834 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 83 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1834 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 84 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1834 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 85 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1834 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 86 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1834 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1834 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraightAlt1 + entities: + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 1834 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1834 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 1834 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1834 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1834 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1834 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1834 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunctionAlt1 + entities: + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1834 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1834 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1834 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1834 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 73 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1834 + - type: DeviceNetwork + deviceLists: + - 146 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1834 + - type: DeviceNetwork + deviceLists: + - 146 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 75 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1834 + - type: DeviceNetwork + deviceLists: + - 146 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1834 + - type: DeviceNetwork + deviceLists: + - 146 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 1834 + - type: DeviceNetwork + deviceLists: + - 146 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 107 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1834 + - type: DeviceNetwork + deviceLists: + - 146 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' +- proto: GravityGeneratorMini + entities: + - uid: 60 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1834 +- proto: Grille + entities: + - uid: 1 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 1834 + - uid: 26 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1834 + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1834 +- proto: GunneryServerLow + entities: + - uid: 55 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1834 + - type: Battery + startingCharge: 0 + - type: ApcPowerReceiver + powerLoad: 5 +- proto: Gyroscope + entities: + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1834 +- proto: LockerWallEVAColorSalvageFilled + entities: + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1834 + - uid: 69 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1834 +- proto: LockerWallMaterialsFuelUraniumFilled + entities: + - uid: 205 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 1834 +- proto: MachineMaterialSilo + entities: + - uid: 90 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 1834 +- proto: MaterialReclaimer + entities: + - uid: 96 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1834 +- proto: NFMagnetBoxOre + entities: + - uid: 104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 1834 +- proto: NitrogenCanister + entities: + - uid: 59 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1834 +- proto: NSCFlag + entities: + - uid: 180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1834 + - uid: 181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 1834 +- proto: OreBag + entities: + - uid: 133 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.3791542,-7.361538 + parent: 1834 + - uid: 134 + components: + - type: Transform + pos: 0.38405514,-7.615139 + parent: 1834 +- proto: OxygenCanister + entities: + - uid: 36 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1834 +- proto: Pickaxe + entities: + - uid: 39 + components: + - type: Transform + parent: 38 + - type: Physics + canCollide: False + - uid: 40 + components: + - type: Transform + parent: 38 + - type: Physics + canCollide: False +- proto: PortableGeneratorSuperPacmanShuttle + entities: + - uid: 56 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 1834 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 1834 +- proto: Poweredlight + entities: + - uid: 190 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1834 + - uid: 191 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1834 + - uid: 192 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1834 + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1834 + - uid: 194 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1834 + - uid: 195 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1834 +- proto: PoweredlightPink + entities: + - uid: 184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1834 + - uid: 185 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1834 + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1834 + - uid: 187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1834 + - uid: 188 + components: + - type: Transform + pos: -0.5,-12.5 + parent: 1834 + - uid: 189 + components: + - type: Transform + pos: 6.5,-12.5 + parent: 1834 +- proto: Rack + entities: + - uid: 13 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1834 +- proto: RandomPosterAny + entities: + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 1834 + - uid: 183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 1834 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1834 +- proto: ShuttleWindowPlasma + entities: + - uid: 6 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1834 + - uid: 16 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-9.5 + parent: 1834 + - uid: 51 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 1834 +- proto: SignalButton + entities: + - uid: 203 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1834 + - type: DeviceLinkSource + linkedPorts: + 37: + - - Pressed + - Toggle + 21: + - - Pressed + - Toggle +- proto: SignalButtonWindows + entities: + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 1834 + - type: DeviceLinkSource + linkedPorts: + 143: + - - Pressed + - Toggle + 142: + - - Pressed + - Toggle + 144: + - - Pressed + - Toggle +- proto: StairDark + entities: + - uid: 23 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1834 + - uid: 62 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1834 + - uid: 93 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 1834 +- proto: SteelBench + entities: + - uid: 12 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1834 + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1834 +- proto: StructureMeleeWeaponRackWallmountedSalvage + entities: + - uid: 38 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1834 + - type: ContainerContainer + containers: + weapon1: !type:ContainerSlot + showEnts: False + occludes: True + ent: 39 + weapon2: !type:ContainerSlot + showEnts: False + occludes: True + ent: 40 + weapon3: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon4: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon5: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: SubstationWallBasic + entities: + - uid: 201 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1834 +- proto: TableReinforced + entities: + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1834 +- proto: Thruster + entities: + - uid: 1938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 1834 + - uid: 1939 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 1834 + - uid: 1940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 1834 + - uid: 1941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 1834 +- proto: ThrusterMediumLong + entities: + - uid: 1942 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1834 + - uid: 1943 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 1834 +- proto: TwoWayLever + entities: + - uid: 135 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 1834 + - type: DeviceLinkSource + linkedPorts: + 101: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 102: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 103: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + - uid: 136 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-11.5 + parent: 1834 + - type: DeviceLinkSource + linkedPorts: + 98: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 99: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 100: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 14 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1834 +- proto: WallShuttle + entities: + - uid: 19 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1834 + - uid: 22 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1834 + - uid: 27 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 1834 + - uid: 44 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1834 + - uid: 45 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1834 + - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 1834 + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 1834 + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 1834 + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 1834 + - uid: 94 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-7.5 + parent: 1834 + - uid: 95 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-11.5 + parent: 1834 + - uid: 1944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1834 + - uid: 1945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1834 + - uid: 1946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1834 + - uid: 1947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1834 + - uid: 1949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1834 + - uid: 1950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1834 + - uid: 1951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1834 + - uid: 1953 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 1834 + - uid: 1954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1834 + - uid: 1955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 1834 + - uid: 1956 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-8.5 + parent: 1834 + - uid: 1957 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1834 + - uid: 1958 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-7.5 + parent: 1834 + - uid: 1959 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-6.5 + parent: 1834 + - uid: 1960 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1834 + - uid: 1961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1834 + - uid: 1962 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 1834 + - uid: 1964 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-6.5 + parent: 1834 + - uid: 1966 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1834 + - uid: 1968 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1834 + - uid: 1969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1834 +- proto: WallShuttleDiagonal + entities: + - uid: 53 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1834 + - uid: 1971 + components: + - type: Transform + pos: -0.5,-11.5 + parent: 1834 + - uid: 1972 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1834 + - uid: 1974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1834 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 1834 +- proto: WarpPoint + entities: + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1834 +- proto: WeaponNavalCannonM25 + entities: + - uid: 1979 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1834 + - uid: 1980 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1834 +- proto: WindowFrostedDirectional + entities: + - uid: 2 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 1834 + - uid: 1983 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 1834 + - uid: 1990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 1834 +... diff --git a/Resources/Maps/_Forge/Shuttles/Science/guardian.yml b/Resources/Maps/_Forge/Shuttles/Science/guardian.yml new file mode 100644 index 000000000000..7097fd899871 --- /dev/null +++ b/Resources/Maps/_Forge/Shuttles/Science/guardian.yml @@ -0,0 +1,5775 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 02/02/2026 08:20:14 + entityCount: 793 +maps: [] +grids: +- 2 +orphans: +- 2 +nullspace: [] +tilemap: + 0: Space + 2: FloorBrokenWood + 5: FloorDarkOffset + 4: FloorElevatorShaft + 3: FloorGlass + 59: FloorHullReinforced + 8: FloorMetalDiamond + 68: FloorMining + 69: FloorMiningDark + 7: FloorRGlass + 89: FloorShuttleWhite + 100: FloorSteelDirty + 6: FloorSteelMono + 9: FloorTechMaint2 + 1: FloorWood + 125: Lattice + 126: Plating + 10: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 2 + components: + - type: MetaData + name: grid + - type: Transform + pos: -3.78125,-2.796875 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAAMAAAAAAAAAAAAAAAAAAwAAAAAAAAQAAAAAAAB+AAAAAAAABAAAAAAAAAMAAAAAAAAAAAAAAAAAAwAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAfQAAAAAAAH0AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAMAAAAAAAADAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAgAAAAAAAAIAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAQAAAAAAAB+AAAAAAAABAAAAAAAAH4AAAAAAAB+AAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAH4AAAAAAAAIAAAAAAAAfgAAAAAAAAQAAAAAAAAJAAAAAAAACQAAAAAAAAQAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAEAAAAAAAAWQAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAUAAAAAAAB+AAAAAAAACAAAAAAAAH4AAAAAAAB+AAAAAAAACQAAAAAAAAkAAAAAAAAEAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAABAAAAAAAAFkAAAAAAAAGAAAAAAAABwAAAAAAAAYAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAEAAAAAAAAfgAAAAAAAAkAAAAAAAAJAAAAAAAAfgAAAAAAAH4AAAAAAAAEAAAAAAAAfgAAAAAAAH4AAAAAAAAFAAAAAAAABgAAAAAAAAcAAAAAAAAGAAAAAAAABQAAAAAAAH4AAAAAAAB+AAAAAAAACAAAAAAAAH4AAAAAAAAEAAAAAAAABAAAAAAAAH4AAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAEAAAAAAAABQAAAAAAAAYAAAAAAAAHAAAAAAAABgAAAAAAAAUAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAACQAAAAAAAAkAAAAAAAAEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAABAAAAAAAAAUAAAAAAAAGAAAAAAAABwAAAAAAAAYAAAAAAAAFAAAAAAAAfgAAAAAAAAUAAAAAAAAJAAAAAAAACQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAH4AAAAAAAB+AAAAAAAABgAAAAAAAAcAAAAAAAAGAAAAAAAAfgAAAAAAAH4AAAAAAAAFAAAAAAAACQAAAAAAAAkAAAAAAAB+AAAAAAAACAAAAAAAAH4AAAAAAABFAAAAAAAARQAAAAAAAEUAAAAAAAAEAAAAAAAABQAAAAAAAAYAAAAAAAAHAAAAAAAABgAAAAAAAAUAAAAAAAAEAAAAAAAABQAAAAAAAAkAAAAAAAAJAAAAAAAAfgAAAAAAAAgAAAAAAAAEAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAUAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAFAAAAAAAAAwAAAAAAAH4AAAAAAAAFAAAAAAAAfgAAAAAAAH4AAAAAAAAIAAAAAAAABAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAfgAAAAAAAA== + version: 7 + 0,1: + ind: 0,1 + tiles: AAAAAAAAAH4AAAAAAAAFAAAAAAAAfgAAAAAAAAUAAAAAAAB+AAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAEAAAAAAAAfgAAAAAAAH0AAAAAAAB+AAAAAAAABQAAAAAAAH4AAAAAAAB+AAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAH4AAAAAAAAKAAAAAAAACgAAAAAAAH4AAAAAAAAAAAAAAAAAfgAAAAAAAAkAAAAAAAAJAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAACgAAAAAAAAoAAAAAAAAEAAAAAAAAfQAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB+AAAAAAAAfgAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAB9AAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAwAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAfQAAAAAAAH0AAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAfQAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH0AAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,0: + ind: 1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB+AAAAAAAAAwAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfgAAAAAAAH4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH4AAAAAAAADAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 1,1: + ind: 1,1 + tiles: AAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - 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 + dampingModifier: 0.25 + - 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: ArrowsGreyscale + decals: + 246: 13,10 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 331: 5,13 + 332: 2,15 + 333: 4,16 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 244: 13,11 + 245: 13,10 + 334: 2,14 + 335: 2,13 + 336: 2,12 + 337: 3,12 + 338: 3,13 + 339: 3,14 + 340: 5,14 + 341: 5,15 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelBox + decals: + 302: 2,15 + 303: 4,16 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 280: 9,8 + 330: 3,14 + 348: 5,8 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 277: 7,8 + 325: 2,14 + 347: 4,8 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 279: 9,7 + 328: 3,12 + 349: 5,7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 276: 7,7 + 327: 2,12 + 346: 4,7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndN + decals: + 305: 1,14 + 309: 2,17 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndS + decals: + 304: 1,12 + 308: 2,16 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 307: 1,13 + 329: 3,13 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 281: 8,8 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 278: 8,7 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 306: 1,13 + 326: 2,13 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 216: 14,14 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 214: 12,14 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 192: 15,6 + 224: 14,7 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 207: 12,7 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndE + decals: + 187: 13,15 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndN + decals: + 173: 11,11 + 174: 11,14 + 175: 15,14 + 176: 15,11 + 196: 15,7 + 206: 13,13 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndS + decals: + 181: 11,9 + 184: 15,9 + 185: 15,13 + 197: 13,8 + 243: 11,13 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndW + decals: + 188: 12,15 + 189: 12,6 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNe + decals: + 242: 12,7 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNw + decals: + 195: 15,6 + 226: 14,7 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSe + decals: + 235: 12,14 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSw + decals: + 233: 14,14 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 182: 11,10 + 183: 15,10 + 202: 13,9 + 205: 13,12 + 217: 14,13 + 218: 14,12 + 219: 14,11 + 220: 14,10 + 221: 14,9 + 222: 14,8 + 236: 12,13 + 237: 12,12 + 238: 12,11 + 239: 12,10 + 240: 12,9 + 241: 12,8 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 193: 13,6 + 194: 14,6 + 215: 13,14 + 225: 13,7 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 190: 13,6 + 191: 14,6 + 223: 13,7 + 234: 13,14 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 177: 11,10 + 178: 15,10 + 198: 13,9 + 201: 13,12 + 208: 12,8 + 209: 12,9 + 210: 12,10 + 211: 12,11 + 212: 12,12 + 213: 12,13 + 227: 14,8 + 228: 14,9 + 229: 14,10 + 230: 14,11 + 231: 14,12 + 232: 14,13 + - node: + color: '#D4D4D428' + id: CheckerNWSE + decals: + 310: 2,12 + - node: + color: '#8D1C9996' + id: DeliveryGreyscale + decals: + 167: 13,8 + 168: 13,9 + 171: 13,12 + 172: 13,13 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 350: 8,8 + 351: 8,7 + 352: 7,7 + 353: 7,8 + 354: 9,8 + 355: 9,7 + 356: 4,7 + 357: 4,8 + 358: 5,8 + 359: 5,7 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 360: 3,13 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtLight + decals: + 111: 7,9 + 112: 8,8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 361: 2,13 + 362: 2,12 + 363: 3,14 + 364: 3,12 + 365: 2,14 + 366: 1,12 + 367: 1,13 + 368: 1,14 + - node: + color: '#D4D4D496' + id: MonoOverlay + decals: + 129: 12,11 + 130: 12,12 + 131: 12,13 + 132: 12,14 + 133: 13,14 + 134: 14,14 + 135: 14,13 + 136: 12,10 + 137: 12,9 + 138: 12,8 + 139: 12,7 + 140: 13,7 + 141: 14,7 + 142: 14,8 + 143: 14,9 + 144: 14,10 + 145: 14,11 + 146: 14,12 + - node: + color: '#8D1C9996' + id: OffsetOverlay + decals: + 150: 11,10 + 151: 11,11 + 152: 15,9 + 153: 15,10 + 154: 15,11 + 155: 15,13 + 156: 15,14 + 158: 13,15 + 159: 12,15 + 160: 11,14 + 161: 11,13 + 162: 15,7 + 163: 15,6 + 164: 14,6 + 165: 13,6 + 166: 12,6 + 180: 11,9 + - node: + color: '#FA750096' + id: OffsetOverlay + decals: + 295: 1,14 + 296: 1,13 + 297: 1,12 + 298: 2,16 + 299: 2,17 + 300: 2,15 + 301: 4,16 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 272: 7,7 + 273: 7,8 + 274: 8,8 + 275: 9,8 + 311: 2,13 + 312: 2,14 + 313: 3,14 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + decals: + 260: 7,7 + 261: 8,7 + 262: 9,7 + 263: 9,8 + 314: 3,12 + 315: 3,13 + 316: 3,14 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + decals: + 264: 7,7 + 265: 8,7 + 266: 9,7 + 267: 7,8 + 317: 2,12 + 318: 2,13 + 319: 2,14 + 320: 3,12 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale90 + decals: + 268: 7,8 + 269: 8,8 + 270: 9,8 + 271: 9,7 + 321: 2,14 + 322: 3,14 + 323: 3,13 + 324: 3,12 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale + decals: + 343: 4,8 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 344: 5,7 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 342: 4,7 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 345: 5,8 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,1: + 0: 18 + 1: 58880 + 2: 12 + 0,2: + 1: 1030 + -1,2: + 0: 10 + 2: 43616 + 0,3: + 1: 52974 + 0: 4096 + -1,3: + 0: 160 + 2: 6 + 0,0: + 2: 49152 + 0,4: + 1: 204 + 2: 4112 + 1,0: + 0: 20480 + 1: 32768 + 1,1: + 1: 63688 + 1,2: + 1: 47167 + 1,3: + 1: 13235 + 2: 34816 + 1,4: + 1: 37 + 2,1: + 1: 62051 + 2,2: + 1: 48031 + 2,3: + 1: 2224 + 2: 13056 + 2,0: + 1: 8192 + 0: 16384 + 2,4: + 1: 132 + 3,1: + 1: 65280 + 2: 6 + 0: 8 + 3,2: + 1: 65527 + 3,3: + 1: 32759 + 3,0: + 0: 4096 + 2: 24576 + 3,4: + 1: 1636 + 4,1: + 0: 16 + 4,3: + 0: 4256 + 2: 12 + -1,4: + 2: 34944 + 0: 8 + 0,5: + 0: 1056 + 2: 2252 + 1,5: + 0: 4097 + 3,5: + 0: 5249 + 2: 614 + 4,4: + 2: 12848 + 0: 2 + 4,2: + 0: 10 + 2: 43712 + 4,5: + 0: 2 + -1,5: + 0: 8 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + 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 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: BecomesStation + id: Guardian + - type: ImplicitRoof +- proto: AirAlarm + entities: + - uid: 211 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 495 + - 499 + - 414 + - 415 + - 416 + - 402 + - 412 + - 497 + - 500 + - 501 + - 496 + - 401 + - 69 + - 413 + - 518 + - 560 + - 528 + - 547 + - uid: 452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 547 + - 528 + - 401 + - 69 + - 501 + - 496 + - 413 + - 518 + - 560 + - 404 + - 77 + - 498 + - 502 +- proto: AirCanister + entities: + - uid: 445 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 +- proto: AirlockCommandGlass + entities: + - uid: 453 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 +- proto: AirlockEngineering + entities: + - uid: 424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 2 +- proto: AirlockExternal + entities: + - uid: 418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 2 + - uid: 419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 2 +- proto: AirlockExternalGlass + entities: + - uid: 12 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - uid: 268 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 +- proto: AirlockGlassShuttle + entities: + - uid: 448 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 449 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 +- proto: AirlockScience + entities: + - uid: 425 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 426 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,16.5 + parent: 2 +- proto: AirlockScienceGlass + entities: + - uid: 422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 2 + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,8.5 + parent: 2 +- proto: APCBasic + entities: + - uid: 435 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,6.5 + parent: 2 + - uid: 565 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,8.5 + parent: 2 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 140 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,15.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: 9.5,3.5 + parent: 2 + - uid: 186 + components: + - type: Transform + pos: 7.5,3.5 + parent: 2 + - uid: 193 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,14.5 + parent: 2 + - uid: 305 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,16.5 + parent: 2 +- proto: AtmosFixBlockerMarker + entities: + - uid: 5 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 6 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - uid: 7 + components: + - type: Transform + pos: -2.5,9.5 + parent: 2 + - uid: 9 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 10 + components: + - type: Transform + pos: 4.5,3.5 + parent: 2 + - uid: 15 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 + - uid: 16 + components: + - type: Transform + pos: 3.5,20.5 + parent: 2 + - uid: 18 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 30 + components: + - type: Transform + pos: -0.5,20.5 + parent: 2 + - uid: 31 + components: + - type: Transform + pos: 19.5,10.5 + parent: 2 + - uid: 64 + components: + - type: Transform + pos: 19.5,11.5 + parent: 2 + - uid: 65 + components: + - type: Transform + pos: 17.5,17.5 + parent: 2 + - uid: 170 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: 17.5,16.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: 19.5,13.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: 17.5,20.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: 19.5,9.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: -1.5,12.5 + parent: 2 + - uid: 240 + components: + - type: Transform + pos: 15.5,21.5 + parent: 2 + - uid: 241 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 247 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 + - uid: 248 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 + - uid: 253 + components: + - type: Transform + pos: 14.5,21.5 + parent: 2 + - uid: 254 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 255 + components: + - type: Transform + pos: 17.5,13.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: -1.5,9.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: -2.5,8.5 + parent: 2 + - uid: 262 + components: + - type: Transform + pos: -0.5,17.5 + parent: 2 + - uid: 263 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - uid: 264 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 272 + components: + - type: Transform + pos: -0.5,10.5 + parent: 2 + - uid: 274 + components: + - type: Transform + pos: -0.5,8.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: 2.5,21.5 + parent: 2 + - uid: 281 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 + - uid: 282 + components: + - type: Transform + pos: 14.5,22.5 + parent: 2 + - uid: 283 + components: + - type: Transform + pos: 13.5,22.5 + parent: 2 + - uid: 284 + components: + - type: Transform + pos: 0.5,19.5 + parent: 2 + - uid: 285 + components: + - type: Transform + pos: 17.5,10.5 + parent: 2 + - uid: 286 + components: + - type: Transform + pos: 19.5,12.5 + parent: 2 + - uid: 287 + components: + - type: Transform + pos: 18.5,12.5 + parent: 2 + - uid: 288 + components: + - type: Transform + pos: 16.5,19.5 + parent: 2 + - uid: 289 + components: + - type: Transform + pos: 16.5,17.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: -0.5,19.5 + parent: 2 + - uid: 292 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 302 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 306 + components: + - type: Transform + pos: 2.5,3.5 + parent: 2 + - uid: 307 + components: + - type: Transform + pos: 10.5,3.5 + parent: 2 + - uid: 309 + components: + - type: Transform + pos: 12.5,3.5 + parent: 2 + - uid: 310 + components: + - type: Transform + pos: 17.5,8.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: 19.5,8.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: 16.5,15.5 + parent: 2 + - uid: 313 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: -2.5,11.5 + parent: 2 + - uid: 316 + components: + - type: Transform + pos: 14.5,3.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: 6.5,3.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: 12.5,23.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: 18.5,9.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: -0.5,18.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: 0.5,17.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: -0.5,16.5 + parent: 2 + - uid: 335 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 343 + components: + - type: Transform + pos: 16.5,5.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: 15.5,4.5 + parent: 2 + - uid: 345 + components: + - type: Transform + pos: 1.5,4.5 + parent: 2 + - uid: 346 + components: + - type: Transform + pos: 0.5,5.5 + parent: 2 + - uid: 489 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 774 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 775 + components: + - type: Transform + pos: 3.5,4.5 + parent: 2 + - uid: 776 + components: + - type: Transform + pos: 3.5,3.5 + parent: 2 + - uid: 777 + components: + - type: Transform + pos: 13.5,3.5 + parent: 2 + - uid: 778 + components: + - type: Transform + pos: 13.5,4.5 + parent: 2 + - uid: 779 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 146 + components: + - type: Transform + pos: 15.5,9.5 + parent: 2 +- proto: BannerTL + entities: + - uid: 363 + components: + - type: Transform + pos: 6.5,5.5 + parent: 2 + - uid: 364 + components: + - type: Transform + pos: 10.5,5.5 + parent: 2 +- proto: Beaker + entities: + - uid: 765 + components: + - type: Transform + pos: 12.827862,6.4514537 + parent: 2 +- proto: BlastDoor + entities: + - uid: 243 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,13.5 + parent: 2 + - uid: 294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,18.5 + parent: 2 + - uid: 383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,14.5 + parent: 2 + - uid: 384 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,15.5 + parent: 2 +- proto: BlastDoorOpen + entities: + - uid: 491 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,14.5 + parent: 2 + - uid: 744 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 2 + - uid: 745 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,11.5 + parent: 2 + - uid: 746 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,4.5 + parent: 2 + - uid: 753 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 2 +- proto: BlueprintLithograph + entities: + - uid: 212 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 +- proto: ButtonFrameCaution + entities: + - uid: 748 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 2 + - uid: 749 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 2 + - uid: 771 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - uid: 782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 2 + - uid: 783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 60 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,14.5 + parent: 2 +- proto: ButtonFrameExit + entities: + - uid: 742 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,12.5 + parent: 2 +- proto: ButtonFrameGrey + entities: + - uid: 780 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 +- proto: ButtonFrameJanitor + entities: + - uid: 57 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.480681,12.723166 + parent: 2 + - uid: 217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.480681,12.30187 + parent: 2 +- proto: CableApcExtension + entities: + - uid: 563 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 595 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 601 + components: + - type: Transform + pos: 3.5,15.5 + parent: 2 + - uid: 602 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 603 + components: + - type: Transform + pos: 4.5,15.5 + parent: 2 + - uid: 604 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - uid: 605 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 606 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 607 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 608 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 609 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 610 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 611 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 612 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 613 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 + - uid: 614 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 + - uid: 615 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 616 + components: + - type: Transform + pos: 2.5,6.5 + parent: 2 + - uid: 617 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 618 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 619 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 620 + components: + - type: Transform + pos: 6.5,8.5 + parent: 2 + - uid: 621 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 622 + components: + - type: Transform + pos: 7.5,9.5 + parent: 2 + - uid: 623 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 + - uid: 624 + components: + - type: Transform + pos: 9.5,10.5 + parent: 2 + - uid: 625 + components: + - type: Transform + pos: 9.5,9.5 + parent: 2 + - uid: 626 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 627 + components: + - type: Transform + pos: 11.5,8.5 + parent: 2 + - uid: 628 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - uid: 629 + components: + - type: Transform + pos: 13.5,8.5 + parent: 2 + - uid: 630 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 632 + components: + - type: Transform + pos: 14.5,9.5 + parent: 2 + - uid: 633 + components: + - type: Transform + pos: 14.5,10.5 + parent: 2 + - uid: 634 + components: + - type: Transform + pos: 14.5,11.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: 14.5,12.5 + parent: 2 + - uid: 636 + components: + - type: Transform + pos: 14.5,13.5 + parent: 2 + - uid: 637 + components: + - type: Transform + pos: 14.5,14.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 639 + components: + - type: Transform + pos: 14.5,16.5 + parent: 2 + - uid: 640 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - uid: 642 + components: + - type: Transform + pos: 12.5,17.5 + parent: 2 + - uid: 643 + components: + - type: Transform + pos: 12.5,18.5 + parent: 2 + - uid: 644 + components: + - type: Transform + pos: 12.5,19.5 + parent: 2 + - uid: 645 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - uid: 646 + components: + - type: Transform + pos: 4.5,18.5 + parent: 2 + - uid: 647 + components: + - type: Transform + pos: 4.5,19.5 + parent: 2 + - uid: 648 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 649 + components: + - type: Transform + pos: 13.5,14.5 + parent: 2 + - uid: 650 + components: + - type: Transform + pos: 12.5,14.5 + parent: 2 + - uid: 651 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 + - uid: 652 + components: + - type: Transform + pos: 13.5,10.5 + parent: 2 + - uid: 653 + components: + - type: Transform + pos: 12.5,10.5 + parent: 2 + - uid: 654 + components: + - type: Transform + pos: 11.5,10.5 + parent: 2 + - uid: 655 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 657 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 658 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 659 + components: + - type: Transform + pos: 7.5,6.5 + parent: 2 + - uid: 660 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 661 + components: + - type: Transform + pos: 7.5,4.5 + parent: 2 + - uid: 662 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - uid: 663 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 664 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - uid: 665 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 666 + components: + - type: Transform + pos: 2.5,5.5 + parent: 2 + - uid: 667 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: 14.5,6.5 + parent: 2 + - uid: 669 + components: + - type: Transform + pos: 14.5,5.5 + parent: 2 + - uid: 670 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 671 + components: + - type: Transform + pos: 2.5,12.5 + parent: 2 + - uid: 672 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 + - uid: 673 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 + - uid: 674 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 + - uid: 675 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 + - uid: 676 + components: + - type: Transform + pos: 5.5,15.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: 6.5,15.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 +- proto: CableApcStack1 + entities: + - uid: 379 + components: + - type: Transform + pos: 13.80983,11.908716 + parent: 2 + - uid: 380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.96608,11.361841 + parent: 2 +- proto: CableHV + entities: + - uid: 278 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 440 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 + - uid: 442 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 +- proto: CableMV + entities: + - uid: 566 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - uid: 568 + components: + - type: Transform + pos: 3.5,7.5 + parent: 2 + - uid: 569 + components: + - type: Transform + pos: 4.5,7.5 + parent: 2 + - uid: 570 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 571 + components: + - type: Transform + pos: 5.5,7.5 + parent: 2 + - uid: 572 + components: + - type: Transform + pos: 6.5,7.5 + parent: 2 + - uid: 573 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - uid: 574 + components: + - type: Transform + pos: 8.5,7.5 + parent: 2 + - uid: 575 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - uid: 576 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 + - uid: 577 + components: + - type: Transform + pos: 11.5,7.5 + parent: 2 + - uid: 578 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 579 + components: + - type: Transform + pos: 13.5,7.5 + parent: 2 + - uid: 580 + components: + - type: Transform + pos: 14.5,7.5 + parent: 2 + - uid: 581 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - uid: 582 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 583 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - uid: 584 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 585 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 586 + components: + - type: Transform + pos: 5.5,11.5 + parent: 2 + - uid: 587 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: 4.5,12.5 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - uid: 591 + components: + - type: Transform + pos: 4.5,15.5 + parent: 2 + - uid: 592 + components: + - type: Transform + pos: 3.5,15.5 + parent: 2 + - uid: 593 + components: + - type: Transform + pos: 3.5,16.5 + parent: 2 + - uid: 594 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 600 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 677 + components: + - type: Transform + pos: 2.5,8.5 + parent: 2 +- proto: CableTerminal + entities: + - uid: 437 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 +- proto: CarpetPurple + entities: + - uid: 704 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 2 + - uid: 705 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,10.5 + parent: 2 + - uid: 706 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,11.5 + parent: 2 + - uid: 707 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,11.5 + parent: 2 + - uid: 708 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,11.5 + parent: 2 + - uid: 709 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,10.5 + parent: 2 +- proto: Catwalk + entities: + - uid: 21 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,19.5 + parent: 2 + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,10.5 + parent: 2 + - uid: 63 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 2 + - uid: 68 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 2 + - uid: 73 + components: + - type: Transform + pos: 13.5,20.5 + parent: 2 + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,3.5 + parent: 2 + - uid: 79 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,4.5 + parent: 2 + - uid: 84 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 + - uid: 91 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,20.5 + parent: 2 + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,11.5 + parent: 2 + - uid: 99 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 2 + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,10.5 + parent: 2 + - uid: 129 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,17.5 + parent: 2 + - uid: 130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,20.5 + parent: 2 + - uid: 132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,12.5 + parent: 2 + - uid: 133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,11.5 + parent: 2 + - uid: 144 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,10.5 + parent: 2 + - uid: 162 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,18.5 + parent: 2 + - uid: 166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,20.5 + parent: 2 + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 + - uid: 179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,11.5 + parent: 2 + - uid: 181 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 2 + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,17.5 + parent: 2 + - uid: 191 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,19.5 + parent: 2 + - uid: 195 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,9.5 + parent: 2 + - uid: 196 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,11.5 + parent: 2 + - uid: 198 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,18.5 + parent: 2 + - uid: 280 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 2 + - uid: 291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,3.5 + parent: 2 + - uid: 296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 2 + - uid: 298 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,4.5 + parent: 2 + - uid: 342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,16.5 + parent: 2 + - uid: 389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,17.5 + parent: 2 + - uid: 391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,12.5 + parent: 2 + - uid: 392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,14.5 + parent: 2 + - uid: 395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,13.5 + parent: 2 + - uid: 396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,15.5 + parent: 2 + - uid: 398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 2 + - uid: 400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,12.5 + parent: 2 + - uid: 431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,7.5 + parent: 2 + - uid: 432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 2 + - uid: 478 + components: + - type: Transform + pos: 7.5,13.5 + parent: 2 + - uid: 480 + components: + - type: Transform + pos: 8.5,13.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: 9.5,13.5 + parent: 2 + - uid: 482 + components: + - type: Transform + pos: 7.5,14.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: 7.5,15.5 + parent: 2 + - uid: 484 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - uid: 485 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,15.5 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: 9.5,14.5 + parent: 2 + - uid: 487 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 +- proto: CatwalkDarkTile + entities: + - uid: 25 + components: + - type: Transform + pos: 4.5,20.5 + parent: 2 + - uid: 41 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,18.5 + parent: 2 + - uid: 44 + components: + - type: Transform + pos: 12.5,20.5 + parent: 2 + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 2 + - uid: 89 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 2 + - uid: 90 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 2 + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 + - uid: 246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 2 + - uid: 301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,13.5 + parent: 2 + - uid: 324 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,16.5 + parent: 2 + - uid: 361 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 2 + - uid: 365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 2 + - uid: 366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 2 + - uid: 394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 2 + - uid: 405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 2 + - uid: 411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 2 + - uid: 417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 2 +- proto: CatwalkWhiteTile + entities: + - uid: 27 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,9.5 + parent: 2 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,12.5 + parent: 2 + - uid: 61 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,13.5 + parent: 2 + - uid: 62 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 2 + - uid: 337 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,11.5 + parent: 2 + - uid: 339 + components: + - type: Transform + pos: 10.5,8.5 + parent: 2 + - uid: 340 + components: + - type: Transform + pos: 10.5,7.5 + parent: 2 +- proto: ChairOfficeLight + entities: + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.603386,10.632237 + parent: 2 + - uid: 763 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.248665,14.875941 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: 13.48304,7.4853163 + parent: 2 +- proto: ChairPilotSeat + entities: + - uid: 375 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,10.5 + parent: 2 +- proto: CircuitImprinter + entities: + - uid: 244 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 +- proto: ComputerTabletopAnalysisConsole + entities: + - uid: 347 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 +- proto: ComputerTabletopResearchAndDevelopment + entities: + - uid: 348 + components: + - type: Transform + pos: 12.5,15.5 + parent: 2 +- proto: ComputerTabletopShuttle + entities: + - uid: 459 + components: + - type: Transform + pos: 8.5,11.5 + parent: 2 +- proto: ComputerTabletopStationRecords + entities: + - uid: 462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,10.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 17 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,13.5 + parent: 2 + - uid: 28 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,14.5 + parent: 2 + - uid: 349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,13.5 + parent: 2 + - uid: 350 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,13.5 + parent: 2 + - uid: 352 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 2 + - uid: 353 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,13.5 + parent: 2 +- proto: CrateArtifactContainer + entities: + - uid: 102 + components: + - type: Transform + pos: 15.5,11.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: 1.5,13.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: 1.5,12.5 + parent: 2 +- proto: CrateBaseSecure + entities: + - uid: 680 + components: + - type: Transform + pos: 3.5,12.5 + parent: 2 + - uid: 681 + components: + - type: Transform + pos: 2.5,14.5 + parent: 2 +- proto: CrateScienceSecure + entities: + - uid: 378 + components: + - type: Transform + pos: 13.5,9.5 + parent: 2 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,12.5 + parent: 2 +- proto: DrinkBeerCan + entities: + - uid: 376 + components: + - type: Transform + pos: 13.211594,10.783716 + parent: 2 + - uid: 377 + components: + - type: Transform + pos: 13.039719,10.549341 + parent: 2 +- proto: DrinkHotCoffee + entities: + - uid: 762 + components: + - type: Transform + pos: 9.145304,11.598454 + parent: 2 +- proto: EmergencyLight + entities: + - uid: 710 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - uid: 711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 + - uid: 713 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,12.5 + parent: 2 + - uid: 714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,15.5 + parent: 2 + - uid: 715 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 2 + - uid: 716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,9.5 + parent: 2 + - uid: 717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 +- proto: ExosuitFabricator + entities: + - uid: 206 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 790 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,6.5 + parent: 2 +- proto: FaxMachineShip + entities: + - uid: 460 + components: + - type: Transform + pos: 7.5,11.5 + parent: 2 + - type: DeviceNetwork + configurators: + - invalid +- proto: FirelockGlass + entities: + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 211 + - 452 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 452 + - uid: 401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 211 + - 452 + - uid: 402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 211 + - uid: 404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 452 + - uid: 412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 211 + - uid: 413 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 211 + - 452 + - uid: 414 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 211 + - uid: 415 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 211 + - uid: 416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 211 +- proto: GasOutletInjector + entities: + - uid: 463 + components: + - type: Transform + pos: 13.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasPassiveVent + entities: + - uid: 472 + components: + - type: Transform + pos: 14.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasPipeBend + entities: + - uid: 467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 537 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 549 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 559 + components: + - type: Transform + pos: 12.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBendAlt1 + entities: + - uid: 468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 510 + components: + - type: Transform + pos: 5.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 512 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 516 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 521 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 527 + components: + - type: Transform + pos: 14.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeManifold + entities: + - uid: 471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasPipeStraight + entities: + - uid: 473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 553 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 557 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 562 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraightAlt1 + entities: + - uid: 506 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 508 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 509 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 513 + components: + - type: Transform + pos: 4.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 514 + components: + - type: Transform + pos: 4.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 520 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 523 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 525 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 529 + components: + - type: Transform + pos: 9.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 530 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 531 + components: + - type: Transform + pos: 9.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunction + entities: + - uid: 542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 550 + components: + - type: Transform + pos: 7.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 555 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 556 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunctionAlt1 + entities: + - uid: 503 + components: + - type: Transform + pos: 2.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 505 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 517 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 522 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPort + entities: + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 2 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#947507FF' + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 2 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPressurePump + entities: + - uid: 465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasPressurePumpAlt1 + entities: + - uid: 466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasVentPump + entities: + - uid: 499 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 211 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 500 + components: + - type: Transform + pos: 4.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 211 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 211 + - 452 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 502 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 452 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 211 + - 452 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 528 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 211 + - 452 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 535 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,7.5 + parent: 2 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 211 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 211 + - 452 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 497 + components: + - type: Transform + pos: 5.5,8.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 211 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 452 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 211 + - 452 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 560 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 211 + - 452 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GoldOre1 + entities: + - uid: 356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.36333,13.592666 + parent: 2 + - type: CollisionWake + enabled: False + - type: Conveyed + - uid: 357 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.95708,13.311416 + parent: 2 + - type: CollisionWake + enabled: False + - type: Conveyed + - uid: 358 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.802239,13.717666 + parent: 2 + - type: CollisionWake + enabled: False + - type: Conveyed +- proto: GravityGeneratorMini + entities: + - uid: 438 + components: + - type: Transform + pos: 1.5,6.5 + parent: 2 +- proto: Grille + entities: + - uid: 13 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 2 + - uid: 14 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,9.5 + parent: 2 + - uid: 26 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,10.5 + parent: 2 + - uid: 33 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,17.5 + parent: 2 + - uid: 67 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 + - uid: 96 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,18.5 + parent: 2 + - uid: 97 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,12.5 + parent: 2 + - uid: 98 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,17.5 + parent: 2 + - uid: 105 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,10.5 + parent: 2 + - uid: 107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,9.5 + parent: 2 + - uid: 136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 2 + - uid: 154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,19.5 + parent: 2 + - uid: 155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 2 + - uid: 163 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 2 + - uid: 169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,22.5 + parent: 2 + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 2 + - uid: 188 + components: + - type: Transform + pos: 3.5,22.5 + parent: 2 + - uid: 214 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,10.5 + parent: 2 + - uid: 245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,11.5 + parent: 2 + - uid: 266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,19.5 + parent: 2 + - uid: 271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,12.5 + parent: 2 + - uid: 273 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,11.5 + parent: 2 + - uid: 275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,14.5 + parent: 2 + - uid: 276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,12.5 + parent: 2 + - uid: 315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,12.5 + parent: 2 + - uid: 325 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,11.5 + parent: 2 + - uid: 326 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,21.5 + parent: 2 + - uid: 360 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,16.5 + parent: 2 +- proto: GrilleBroken + entities: + - uid: 318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,18.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: 17.5,18.5 + parent: 2 +- proto: GrilleDiagonal + entities: + - uid: 19 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,8.5 + parent: 2 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,13.5 + parent: 2 + - uid: 141 + components: + - type: Transform + pos: -0.5,20.5 + parent: 2 + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,20.5 + parent: 2 + - uid: 160 + components: + - type: Transform + pos: -2.5,13.5 + parent: 2 + - uid: 165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,8.5 + parent: 2 + - uid: 189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 2 + - uid: 222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,22.5 + parent: 2 + - uid: 238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,16.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: 2.5,22.5 + parent: 2 +- proto: Gyroscope + entities: + - uid: 374 + components: + - type: Transform + pos: 7.5,10.5 + parent: 2 +- proto: HandheldArtifactContainer + entities: + - uid: 494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.4849463,14.6558275 + parent: 2 +- proto: KitchenReagentGrinder + entities: + - uid: 767 + components: + - type: Transform + pos: 12.5,6.5 + parent: 2 + - type: ContainerContainer + containers: + beakerSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + inputContainer: !type:Container + showEnts: False + occludes: True + ents: + - 768 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] +- proto: LockerResearchDirectorFilled + entities: + - uid: 370 + components: + - type: Transform + pos: 14.73599,6.50666 + parent: 2 +- proto: LockerWallEVAColorSalvageFilled + entities: + - uid: 433 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,16.5 + parent: 2 + - uid: 434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,17.5 + parent: 2 +- proto: LockerWallMaterialsFuelBananiumFilled + entities: + - uid: 679 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,13.5 + parent: 2 + - uid: 410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,12.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 270 + components: + - type: Transform + pos: 13.5,18.5 + parent: 2 +- proto: MachineMaterialSilo + entities: + - uid: 321 + components: + - type: Transform + pos: 11.5,14.5 + parent: 2 +- proto: MaterialReclaimer + entities: + - uid: 429 + components: + - type: Transform + pos: 2.5,15.5 + parent: 2 +- proto: NFHolopadShip + entities: + - uid: 86 + components: + - type: Transform + pos: 13.5,11.5 + parent: 2 + - type: WiresPanel + open: True +- proto: NFLockerScienceFilled + entities: + - uid: 369 + components: + - type: Transform + pos: 14.225573,6.50666 + parent: 2 +- proto: OreBag + entities: + - uid: 386 + components: + - type: Transform + pos: 5.504511,13.3283615 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: 5.520136,13.5939865 + parent: 2 +- proto: OreProcessor + entities: + - uid: 304 + components: + - type: Transform + pos: 11.5,13.5 + parent: 2 +- proto: PaperBin5 + entities: + - uid: 461 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 +- proto: PaperScrap + entities: + - uid: 769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.389926,6.550412 + parent: 2 +- proto: PenCap + entities: + - uid: 766 + components: + - type: Transform + pos: 13.723695,6.8577037 + parent: 2 +- proto: Pickaxe + entities: + - uid: 597 + components: + - type: Transform + parent: 596 + - type: Physics + canCollide: False +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,13.5 + parent: 2 +- proto: PlushieOrangeFox + entities: + - uid: 479 + components: + - type: Transform + pos: 2.5049353,8.574683 + parent: 2 +- proto: PortableGeneratorDKJrShuttle + entities: + - uid: 451 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 770 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 +- proto: PosterContrabandTrueEnemy + entities: + - uid: 721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 2 +- proto: PosterLegitPeriodicTable + entities: + - uid: 722 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,16.5 + parent: 2 +- proto: Poweredlight + entities: + - uid: 684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,17.5 + parent: 2 + - uid: 685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,12.5 + parent: 2 + - uid: 686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,9.5 + parent: 2 + - uid: 687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 2 + - uid: 688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,6.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: 11.5,11.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: 15.5,14.5 + parent: 2 + - uid: 691 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 2 + - uid: 693 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 2 + - uid: 761 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,10.5 + parent: 2 +- proto: PoweredlightOrange + entities: + - uid: 682 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 2 + - uid: 698 + components: + - type: Transform + pos: 14.5,4.5 + parent: 2 + - uid: 699 + components: + - type: Transform + pos: 2.5,4.5 + parent: 2 + - uid: 700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,20.5 + parent: 2 + - uid: 701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,20.5 + parent: 2 + - uid: 703 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,15.5 + parent: 2 +- proto: PoweredlightPink + entities: + - uid: 694 + components: + - type: Transform + pos: 17.5,11.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: -0.5,11.5 + parent: 2 + - uid: 696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,19.5 + parent: 2 + - uid: 697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,19.5 + parent: 2 +- proto: PoweredSmallLight + entities: + - uid: 683 + components: + - type: Transform + pos: 2.5,10.5 + parent: 2 +- proto: Protolathe + entities: + - uid: 52 + components: + - type: Transform + pos: 15.5,10.5 + parent: 2 +- proto: Rack + entities: + - uid: 399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,13.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 267 + components: + - type: Transform + pos: 12.5,12.5 + parent: 2 +- proto: RandomPosterLegit + entities: + - uid: 723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 2 + - uid: 724 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 2 + - uid: 725 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 2 + - uid: 726 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 2 + - uid: 727 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,15.5 + parent: 2 + - uid: 728 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,9.5 + parent: 2 + - uid: 729 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,5.5 + parent: 2 + - uid: 730 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,13.5 + parent: 2 +- proto: RandomSpawner + entities: + - uid: 731 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,12.5 + parent: 2 + - uid: 732 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,14.5 + parent: 2 + - uid: 733 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 2 + - uid: 734 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,7.5 + parent: 2 + - uid: 735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,8.5 + parent: 2 + - uid: 736 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,7.5 + parent: 2 + - uid: 737 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,10.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: 14.5,18.5 + parent: 2 + - uid: 740 + components: + - type: Transform + pos: 9.5,4.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: 9.5,11.5 + parent: 2 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 250 + components: + - type: Transform + pos: 15.5,6.5 + parent: 2 +- proto: ScrapGlass + entities: + - uid: 381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.15358,12.002466 + parent: 2 +- proto: ScrapProcessor + entities: + - uid: 259 + components: + - type: Transform + pos: 4.5,16.5 + parent: 2 +- proto: Screwdriver + entities: + - uid: 382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.937487,11.010866 + parent: 2 +- proto: SheetPlasma1 + entities: + - uid: 768 + components: + - type: Transform + parent: 767 + - type: Stack + count: 5 + - type: Physics + canCollide: False +- proto: ShuttersNormal + entities: + - uid: 420 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - uid: 421 + components: + - type: Transform + pos: 4.5,10.5 + parent: 2 +- proto: ShuttersNormalOpen + entities: + - uid: 702 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: 7.5,12.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: 8.5,12.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: 9.5,12.5 + parent: 2 + - uid: 758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,11.5 + parent: 2 + - uid: 759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 +- proto: ShuttersRadiation + entities: + - uid: 450 + components: + - type: Transform + pos: 2.5,9.5 + parent: 2 +- proto: ShuttleWindow + entities: + - uid: 103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,12.5 + parent: 2 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,12.5 + parent: 2 + - uid: 111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,11.5 + parent: 2 + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 2 + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,10.5 + parent: 2 + - uid: 760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 2 +- proto: ShuttleWindowPlasma + entities: + - uid: 74 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,10.5 + parent: 2 + - uid: 76 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,14.5 + parent: 2 + - uid: 115 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 2 + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,11.5 + parent: 2 + - uid: 299 + components: + - type: Transform + pos: 13.5,16.5 + parent: 2 +- proto: SignalButtonWindows + entities: + - uid: 216 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 243: + - - Pressed + - Toggle + - uid: 351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.4853115,12.299555 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 243: + - - Pressed + - Toggle + - uid: 354 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.4853115,12.723166 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 352: + - - Pressed + - Forward + 28: + - - Pressed + - Forward + - uid: 743 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 745: + - - Pressed + - Toggle + 744: + - - Pressed + - Toggle + 746: + - - Pressed + - Toggle + 747: + - - Pressed + - Toggle + - uid: 750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 753: + - - Pressed + - Toggle + 752: + - - Pressed + - Toggle + - uid: 751 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 752: + - - Pressed + - Toggle + 753: + - - Pressed + - Toggle + - uid: 754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 755: + - - Pressed + - Toggle + 756: + - - Pressed + - Toggle + 702: + - - Pressed + - Toggle + 757: + - - Pressed + - Toggle + 758: + - - Pressed + - Toggle + 759: + - - Pressed + - Toggle + - uid: 772 + components: + - type: Transform + pos: 5.5,16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 384: + - - Pressed + - Toggle + 383: + - - Pressed + - Toggle + - uid: 773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 491: + - - Pressed + - Toggle + - uid: 781 + components: + - type: Transform + pos: 13.5,15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 294: + - - Pressed + - Toggle + - uid: 784 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 420: + - - Pressed + - Toggle + 421: + - - Pressed + - Toggle + - uid: 785 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 421: + - - Pressed + - Toggle + 420: + - - Pressed + - Toggle +- proto: SignDirectionalSalvage + entities: + - uid: 720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 2 +- proto: SignDirectionalSci + entities: + - uid: 719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,9.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 441 + components: + - type: Transform + pos: 1.5,8.5 + parent: 2 +- proto: SpawnPointContractor + entities: + - uid: 458 + components: + - type: Transform + pos: 9.5,8.5 + parent: 2 +- proto: SpawnPointMercenary + entities: + - uid: 457 + components: + - type: Transform + pos: 8.5,8.5 + parent: 2 +- proto: SpawnPointPilot + entities: + - uid: 334 + components: + - type: Transform + pos: 7.5,8.5 + parent: 2 +- proto: StairBridge + entities: + - uid: 80 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,9.5 + parent: 2 + - uid: 81 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,17.5 + parent: 2 + - uid: 82 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,19.5 + parent: 2 + - uid: 93 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,12.5 + parent: 2 + - uid: 94 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,17.5 + parent: 2 + - uid: 95 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,19.5 + parent: 2 + - uid: 106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,9.5 + parent: 2 + - uid: 153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,12.5 + parent: 2 +- proto: Stairs + entities: + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,11.5 + parent: 2 + - uid: 260 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 2 + - uid: 367 + components: + - type: Transform + pos: 7.5,5.5 + parent: 2 + - uid: 368 + components: + - type: Transform + pos: 9.5,5.5 + parent: 2 + - uid: 390 + components: + - type: Transform + pos: 5.5,9.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: 4.5,9.5 + parent: 2 +- proto: StairWhite + entities: + - uid: 297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,8.5 + parent: 2 + - uid: 303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,7.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: 14.5,15.5 + parent: 2 +- proto: SteelBench + entities: + - uid: 427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,16.5 + parent: 2 + - uid: 428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 2 +- proto: StorageCanister + entities: + - uid: 397 + components: + - type: Transform + pos: 15.5,13.5 + parent: 2 +- proto: StructureMeleeWeaponRackWallmountedSalvage + entities: + - uid: 596 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - type: ContainerContainer + containers: + weapon1: !type:ContainerSlot + showEnts: False + occludes: True + ent: 597 + weapon2: !type:ContainerSlot + showEnts: False + occludes: True + ent: 598 + weapon3: !type:ContainerSlot + showEnts: False + occludes: True + ent: 599 + weapon4: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon5: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: SubstationBasic + entities: + - uid: 444 + components: + - type: Transform + pos: 1.5,7.5 + parent: 2 +- proto: TableCounterMetal + entities: + - uid: 355 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,13.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,6.5 + parent: 2 + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,11.5 + parent: 2 + - uid: 249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,6.5 + parent: 2 + - uid: 293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,15.5 + parent: 2 + - uid: 322 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,15.5 + parent: 2 + - uid: 371 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,11.5 + parent: 2 + - uid: 372 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,11.5 + parent: 2 + - uid: 373 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,10.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: 1.5,14.5 + parent: 2 +- proto: Thruster + entities: + - uid: 38 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 70 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,10.5 + parent: 2 + - uid: 72 + components: + - type: Transform + pos: 2.5,20.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: 14.5,20.5 + parent: 2 + - uid: 177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,11.5 + parent: 2 + - uid: 184 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,11.5 + parent: 2 + - uid: 190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,10.5 + parent: 2 + - uid: 277 + components: + - type: Transform + pos: 13.5,21.5 + parent: 2 +- proto: ThrusterMedium + entities: + - uid: 219 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,3.5 + parent: 2 + - uid: 242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 2 +- proto: TwoWayLever + entities: + - uid: 488 + components: + - type: Transform + pos: 8.5,14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 349: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 353: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 350: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 447 + components: + - type: Transform + pos: 8.5,4.5 + parent: 2 +- proto: WallShuttle + entities: + - uid: 1 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,18.5 + parent: 2 + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,5.5 + parent: 2 + - uid: 4 + components: + - type: Transform + pos: 1.5,11.5 + parent: 2 + - uid: 8 + components: + - type: Transform + pos: 15.5,12.5 + parent: 2 + - uid: 20 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,4.5 + parent: 2 + - uid: 34 + components: + - type: Transform + pos: 13.5,5.5 + parent: 2 + - uid: 35 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,19.5 + parent: 2 + - uid: 36 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,21.5 + parent: 2 + - uid: 37 + components: + - type: Transform + pos: 3.5,19.5 + parent: 2 + - uid: 39 + components: + - type: Transform + pos: 1.5,20.5 + parent: 2 + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,19.5 + parent: 2 + - uid: 42 + components: + - type: Transform + pos: 4.5,22.5 + parent: 2 + - uid: 43 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,19.5 + parent: 2 + - uid: 45 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 2 + - uid: 47 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - uid: 48 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,16.5 + parent: 2 + - uid: 53 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,4.5 + parent: 2 + - uid: 54 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 2 + - uid: 55 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,6.5 + parent: 2 + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,12.5 + parent: 2 + - uid: 58 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,4.5 + parent: 2 + - uid: 59 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,17.5 + parent: 2 + - uid: 75 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,13.5 + parent: 2 + - uid: 85 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,12.5 + parent: 2 + - uid: 100 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,12.5 + parent: 2 + - uid: 101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,9.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 109 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 2 + - uid: 112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,6.5 + parent: 2 + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,15.5 + parent: 2 + - uid: 114 + components: + - type: Transform + pos: 13.5,19.5 + parent: 2 + - uid: 116 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,16.5 + parent: 2 + - uid: 117 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,12.5 + parent: 2 + - uid: 118 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 2 + - uid: 119 + components: + - type: Transform + pos: 12.5,16.5 + parent: 2 + - uid: 120 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,7.5 + parent: 2 + - uid: 121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,8.5 + parent: 2 + - uid: 122 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,4.5 + parent: 2 + - uid: 125 + components: + - type: Transform + pos: 10.5,14.5 + parent: 2 + - uid: 127 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 2 + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: 0.5,11.5 + parent: 2 + - uid: 138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,19.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: 10.5,15.5 + parent: 2 + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 2 + - uid: 148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 2 + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 2 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,9.5 + parent: 2 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,7.5 + parent: 2 + - uid: 157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,6.5 + parent: 2 + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 2 + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 2 + - uid: 171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 2 + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,5.5 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: 3.5,18.5 + parent: 2 + - uid: 174 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,6.5 + parent: 2 + - uid: 178 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,9.5 + parent: 2 + - uid: 180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,4.5 + parent: 2 + - uid: 183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,15.5 + parent: 2 + - uid: 187 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: 2.5,19.5 + parent: 2 + - uid: 197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,6.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: 2.5,18.5 + parent: 2 + - uid: 207 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 2 + - uid: 208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,18.5 + parent: 2 + - uid: 221 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,13.5 + parent: 2 + - uid: 224 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,5.5 + parent: 2 + - uid: 225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 2 + - uid: 226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,21.5 + parent: 2 + - uid: 227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,18.5 + parent: 2 + - uid: 229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,12.5 + parent: 2 + - uid: 230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,13.5 + parent: 2 + - uid: 232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,9.5 + parent: 2 + - uid: 233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,17.5 + parent: 2 + - uid: 234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,17.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: 15.5,20.5 + parent: 2 + - uid: 236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 2 + - uid: 239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,16.5 + parent: 2 + - uid: 269 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,15.5 + parent: 2 + - uid: 295 + components: + - type: Transform + pos: 15.5,8.5 + parent: 2 + - uid: 327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,9.5 + parent: 2 + - uid: 336 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,17.5 + parent: 2 + - uid: 341 + components: + - type: Transform + pos: 3.5,6.5 + parent: 2 + - uid: 359 + components: + - type: Transform + pos: 3.5,10.5 + parent: 2 + - uid: 362 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 2 + - uid: 385 + components: + - type: Transform + pos: 4.5,6.5 + parent: 2 + - uid: 387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,16.5 + parent: 2 + - uid: 388 + components: + - type: Transform + pos: 3.5,8.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 3.5,9.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: 3.5,11.5 + parent: 2 + - uid: 409 + components: + - type: Transform + pos: 2.5,11.5 + parent: 2 + - uid: 454 + components: + - type: Transform + pos: 1.5,9.5 + parent: 2 + - uid: 455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,9.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: 1.5,10.5 + parent: 2 +- proto: WallShuttleDiagonal + entities: + - uid: 11 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,5.5 + parent: 2 + - uid: 22 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,16.5 + parent: 2 + - uid: 23 + components: + - type: Transform + pos: 10.5,16.5 + parent: 2 + - uid: 24 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,3.5 + parent: 2 + - uid: 32 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,23.5 + parent: 2 + - uid: 46 + components: + - type: Transform + pos: 11.5,17.5 + parent: 2 + - uid: 50 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,8.5 + parent: 2 + - uid: 51 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,4.5 + parent: 2 + - uid: 71 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: 1.5,21.5 + parent: 2 + - uid: 137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,21.5 + parent: 2 + - uid: 147 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 2 + - uid: 175 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,3.5 + parent: 2 + - uid: 176 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 2 + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,4.5 + parent: 2 + - uid: 220 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,8.5 + parent: 2 + - uid: 223 + components: + - type: Transform + pos: -0.5,13.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: 0.5,15.5 + parent: 2 + - uid: 231 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,13.5 + parent: 2 + - uid: 237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,17.5 + parent: 2 + - uid: 265 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,5.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: 4.5,23.5 + parent: 2 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 786 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,17.5 + parent: 2 + - uid: 787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 2 + - uid: 788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,12.5 + parent: 2 +- proto: WarningAir + entities: + - uid: 477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 2 +- proto: WarpPoint + entities: + - uid: 456 + components: + - type: Transform + pos: 8.5,10.5 + parent: 2 +- proto: WeaponCrusherDagger + entities: + - uid: 599 + components: + - type: Transform + parent: 596 + - type: Physics + canCollide: False +- proto: WeaponCrusherGlaive + entities: + - uid: 598 + components: + - type: Transform + parent: 596 + - type: Physics + canCollide: False +- proto: WindoorSecure + entities: + - uid: 251 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,14.5 + parent: 2 + - uid: 300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,13.5 + parent: 2 +- proto: WindowFrostedDirectional + entities: + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,6.5 + parent: 2 + - uid: 252 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,15.5 + parent: 2 + - uid: 261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,6.5 + parent: 2 + - uid: 317 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,15.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: 11.5,9.5 + parent: 2 + - uid: 430 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,15.5 + parent: 2 +... diff --git a/Resources/Maps/_Forge/Shuttles/Science/investigator.yml b/Resources/Maps/_Forge/Shuttles/Science/investigator.yml index c7a31a104b69..589cbea241d5 100644 --- a/Resources/Maps/_Forge/Shuttles/Science/investigator.yml +++ b/Resources/Maps/_Forge/Shuttles/Science/investigator.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Grid - engineVersion: 262.0.0 + engineVersion: 268.1.0 forkId: "" forkVersion: "" - time: 10/13/2025 15:34:53 - entityCount: 939 + time: 01/21/2026 07:04:32 + entityCount: 937 maps: [] grids: - 1 @@ -964,6 +964,25 @@ entities: deviceLists: - 5 - 500 +- proto: AmmoLoaderSmall + entities: + - uid: 658 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - type: ContainerContainer + containers: + ammo_loader: !type:Container + showEnts: False + occludes: True + ents: + - 666 + - type: DeviceLinkSource + linkedPorts: + 669: + - - AmmoLoaderLoad + - SpaceArtilleryLoad - proto: APCHighCapacity entities: - uid: 20 @@ -2254,11 +2273,6 @@ entities: - type: Transform pos: -3.5,0.5 parent: 1 - - uid: 265 - components: - - type: Transform - pos: -2.5,4.5 - parent: 1 - uid: 266 components: - type: Transform @@ -2893,6 +2907,12 @@ entities: parent: 1 - proto: Catwalk entities: + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 - uid: 391 components: - type: Transform @@ -3311,6 +3331,13 @@ entities: rot: 3.141592653589793 rad pos: 10.5,-2.5 parent: 1 +- proto: ComputerGunneryConsole + entities: + - uid: 656 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 - proto: ComputerPowerMonitoring entities: - uid: 467 @@ -3677,6 +3704,14 @@ entities: - type: Transform pos: -4.496129,-2.402067 parent: 1 +- proto: ForgeAmmoDrum20mmBase + entities: + - uid: 666 + components: + - type: Transform + parent: 658 + - type: Physics + canCollide: False - proto: GasMixerOnFlipped entities: - uid: 514 @@ -4617,6 +4652,17 @@ entities: rot: 1.5707963267948966 rad pos: -5.5,-7.5 parent: 1 +- proto: GunneryServerLow + entities: + - uid: 668 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - type: Battery + startingCharge: 0 + - type: ApcPowerReceiver + powerLoad: 5 - proto: Gyroscope entities: - uid: 633 @@ -4857,58 +4903,36 @@ entities: - type: Transform pos: -2.5,-0.5 parent: 1 -- proto: MachineAnomalyVessel +- proto: MachineArtifactAnalyzer entities: - - uid: 651 + - uid: 653 components: - type: Transform - pos: 11.5,-0.5 + pos: 9.5,-7.5 parent: 1 -- proto: MachineAPE +- proto: MachineFrame entities: - - uid: 652 + - uid: 651 components: - type: Transform - rot: 3.141592653589793 rad pos: 7.5,-2.5 parent: 1 -- proto: MachineArtifactAnalyzer - entities: - - uid: 653 - components: - - type: Transform - pos: 9.5,-7.5 - parent: 1 -- proto: MachineMaterialSilo - entities: - - uid: 654 + - uid: 652 components: - type: Transform - pos: 5.5,-2.5 + pos: 11.5,-0.5 parent: 1 -- proto: MachineMiniAnomalyGenerator - entities: - uid: 655 components: - type: Transform pos: 9.5,2.5 parent: 1 -- proto: MaterialAnomalite1 +- proto: MachineMaterialSilo entities: - - uid: 656 - components: - - type: Transform - pos: 8.675543,2.3785784 - parent: 1 - - uid: 657 - components: - - type: Transform - pos: 8.34221,2.5105226 - parent: 1 - - uid: 658 + - uid: 654 components: - type: Transform - pos: 8.65471,2.677189 + pos: 5.5,-2.5 parent: 1 - proto: MedkitRadiationFilled entities: @@ -4972,14 +4996,6 @@ entities: parent: 1 - type: Physics bodyType: Static -- proto: PaperBin5 - entities: - - uid: 666 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 1 - proto: PartRodMetal10 entities: - uid: 667 @@ -4987,14 +5003,6 @@ entities: - type: Transform pos: 8.5138855,-6.3859262 parent: 1 -- proto: PillSpaceDrugs - entities: - - uid: 669 - components: - - type: Transform - parent: 668 - - type: Physics - canCollide: False - proto: PlasmaWindowDirectional entities: - uid: 670 @@ -5060,19 +5068,6 @@ entities: - type: Transform pos: -4.5,-1.5 parent: 1 -- proto: PottedPlant21 - entities: - - uid: 668 - components: - - type: Transform - pos: -2.4,-4.65 - parent: 1 - - type: ContainerContainer - containers: - stash: !type:ContainerSlot - showEnts: False - occludes: True - ent: 669 - proto: Poweredlight entities: - uid: 680 @@ -5847,11 +5842,6 @@ entities: - type: Transform pos: -1.5,4.5 parent: 1 - - uid: 800 - components: - - type: Transform - pos: -2.5,4.5 - parent: 1 - uid: 801 components: - type: Transform @@ -6156,11 +6146,6 @@ entities: - type: Transform pos: 11.5,-2.5 parent: 1 - - uid: 859 - components: - - type: Transform - pos: -0.5,-4.5 - parent: 1 - uid: 860 components: - type: Transform @@ -6671,6 +6656,21 @@ entities: - type: Transform pos: 3.5,-0.5 parent: 1 +- proto: WeaponTurretL85Autocannon + entities: + - uid: 669 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 +- proto: WeaponTurretM220 + entities: + - uid: 657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 1 - proto: WindoorSecure entities: - uid: 936 diff --git a/Resources/Maps/_Forge/Shuttles/Science/lyrae.yml b/Resources/Maps/_Forge/Shuttles/Science/lyrae.yml index 9591af9ca36e..8c8174a42e0a 100644 --- a/Resources/Maps/_Forge/Shuttles/Science/lyrae.yml +++ b/Resources/Maps/_Forge/Shuttles/Science/lyrae.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Grid - engineVersion: 255.1.0 + engineVersion: 268.1.0 forkId: "" forkVersion: "" - time: 06/07/2025 13:22:08 - entityCount: 763 + time: 01/21/2026 07:01:15 + entityCount: 780 maps: [] grids: - 1 @@ -46,20 +46,20 @@ entities: chunks: 0,0: ind: 0,0 - tiles: fQAAAAAAfQAAAAAAfQAAAAAAdAAAAAABfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAABHgAAAAABHgAAAAABHgAAAAACHgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAgAAAAACAgAAAAACAgAAAAABAgAAAAABAgAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAwAAAAADAwAAAAABfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAgAAAAADLgAAAAACLgAAAAAALgAAAAABAgAAAAADfQAAAAAAfAAAAAAAfQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAgAAAAABLgAAAAADLgAAAAAALgAAAAABAgAAAAACfQAAAAAAfAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAgAAAAADAgAAAAABAgAAAAADAgAAAAADAgAAAAACfQAAAAAAfAAAAAAAfQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: fQAAAAAAAH0AAAAAAAB9AAAAAAAAdAAAAAABAH0AAAAAAAB9AAAAAAAAfQAAAAAAACMAAAAAAQAeAAAAAAEAHgAAAAABAB4AAAAAAgAeAAAAAAMAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAACAAAAAAIAAgAAAAACAAIAAAAAAQACAAAAAAEAAgAAAAACAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAMAAAAAAwADAAAAAAEAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAgAAAAADAC4AAAAAAgAuAAAAAAAALgAAAAABAAIAAAAAAwB9AAAAAAAAfAAAAAAAAH0AAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAIAAAAAAQAuAAAAAAMALgAAAAAAAC4AAAAAAQACAAAAAAIAfQAAAAAAAHwAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAACAAAAAAMAAgAAAAABAAIAAAAAAwACAAAAAAMAAgAAAAACAH0AAAAAAAB8AAAAAAAAfQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAAAfQAAAAAAAAEAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAH0AAAAAAAB8AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB9AAAAAAAAfAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfQAAAAAAAHwAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAH0AAAAAAAB8AAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB9AAAAAAAAfAAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfQAAAAAAAHwAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB8AAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAawAAAAAAawAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAdAAAAAADfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAawAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfQAAAAAABQAAAAAABQAAAAAABQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAfQAAAAAAfQAAAAAAawAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAABQAAAAAABgAAAAAABQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAIwAAAAABfQAAAAAAfQAAAAAAIwAAAAACIwAAAAADIwAAAAABfQAAAAAABQAAAAAABQAAAAAABQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAABHgAAAAABHgAAAAADHgAAAAABHgAAAAAAHgAAAAADHgAAAAACHgAAAAABfQAAAAAAfQAAAAAAdAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAIwAAAAACIwAAAAAAHgAAAAACHgAAAAACHgAAAAADHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAADHgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGsAAAAAAABrAAAAAAAAawAAAAAAAGsAAAAAAAB9AAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB0AAAAAAMAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABrAAAAAAAAawAAAAAAAH0AAAAAAABrAAAAAAAAfQAAAAAAAH0AAAAAAAB8AAAAAAAAfAAAAAAAAH0AAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAawAAAAAAAH0AAAAAAAB9AAAAAAAAawAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAABQAAAAAAAAYAAAAAAAAFAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAIwAAAAABAH0AAAAAAAB9AAAAAAAAIwAAAAACACMAAAAAAwAjAAAAAAEAfQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAjAAAAAAEAHgAAAAABAB4AAAAAAwAeAAAAAAEAHgAAAAAAAB4AAAAAAwAeAAAAAAIAHgAAAAABAH0AAAAAAAB9AAAAAAAAdAAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAACMAAAAAAgAjAAAAAAAAHgAAAAACAB4AAAAAAgAeAAAAAAMAHgAAAAADAB4AAAAAAAAeAAAAAAIAHgAAAAABAB4AAAAAAwAeAAAAAAMAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAABHgAAAAAAHgAAAAAAHgAAAAADHwAAAAADHwAAAAACHwAAAAACHwAAAAABHwAAAAADHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAwAAAAABAwAAAAABHgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAIwAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAABfAAAAAAAfQAAAAAAeQAAAAADeQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfAAAAAAAfQAAAAAAeQAAAAABeQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAHgAAAAAAfAAAAAAAfQAAAAAAeQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAQAAAAAAHgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAfQAAAAAALgAAAAACLgAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALgAAAAACLgAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALgAAAAABLgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAALgAAAAAALgAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAHgAAAAABAB4AAAAAAAAeAAAAAAAAHgAAAAADAB8AAAAAAwAfAAAAAAIAHwAAAAACAB8AAAAAAQAfAAAAAAMAHwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAADAAAAAAEAAwAAAAABAB4AAAAAAwB9AAAAAAAAfQAAAAAAAH0AAAAAAAAjAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAeAAAAAAEAfAAAAAAAAH0AAAAAAAB5AAAAAAMAeQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeAAAAAAMAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAHwAAAAAAAB9AAAAAAAAeQAAAAABAHkAAAAAAgB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAB4AAAAAAAB8AAAAAAAAfQAAAAAAAHkAAAAAAAB5AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAABAAAAAAAAHgAAAAAAAH0AAAAAAAB8AAAAAAAAAAAAAAAAAH0AAAAAAAAuAAAAAAIALgAAAAADAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfAAAAAAAAH0AAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAALgAAAAACAC4AAAAAAQB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAHwAAAAAAAB9AAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAC4AAAAAAQAuAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAAAfQAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAuAAAAAAAALgAAAAACAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAAAH0AAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfQAAAAAAAH0AAAAAAAAuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAHwAAAAAAAB9AAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB8AAAAAAAAfQAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAAAHwAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAdAAAAAADfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAABQAAAAAABQAAAAAABQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAABQAAAAAABgAAAAABBQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAawAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAABQAAAAAABQAAAAAABQAAAAAAfQAAAAAAIwAAAAAAIwAAAAABIwAAAAACfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAdAAAAAAAfQAAAAAAfQAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAADHwAAAAACHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAABHgAAAAAAHgAAAAADHgAAAAADHwAAAAABLgAAAAABLgAAAAABLgAAAAAALgAAAAAAHwAAAAAD - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB0AAAAAAMAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB9AAAAAAAAawAAAAAAAGsAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAB9AAAAAAAAfAAAAAAAAHwAAAAAAAB9AAAAAAAAfQAAAAAAAGsAAAAAAABrAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAABQAAAAAAAAYAAAAAAQAFAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAABrAAAAAAAAawAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAH0AAAAAAAAjAAAAAAAAIwAAAAABACMAAAAAAgB9AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAdAAAAAAAAH0AAAAAAAB9AAAAAAAAHwAAAAADAB8AAAAAAgAfAAAAAAMAHwAAAAADAB8AAAAAAgAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAHgAAAAABAB4AAAAAAAAeAAAAAAMAHgAAAAADAB8AAAAAAQAuAAAAAAEALgAAAAABAC4AAAAAAAAuAAAAAAAAHwAAAAADAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -776,6 +776,7 @@ entities: - type: GasTileOverlay - type: RadiationGridResistance - type: NavMap + - type: ImplicitRoof - proto: AirAlarm entities: - uid: 281 @@ -927,6 +928,18 @@ entities: - type: Transform pos: -8.5,-5.5 parent: 1 +- proto: AmmoLoaderSmall + entities: + - uid: 780 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 690: + - - AmmoLoaderLoad + - SpaceArtilleryLoad - proto: APCBasic entities: - uid: 292 @@ -2154,6 +2167,11 @@ entities: - type: Transform pos: 1.5,-3.5 parent: 1 + - uid: 481 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 - uid: 735 components: - type: Transform @@ -2189,6 +2207,66 @@ entities: - type: Transform pos: -5.5,2.5 parent: 1 + - uid: 766 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 + - uid: 769 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 770 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 771 + components: + - type: Transform + pos: -7.5,9.5 + parent: 1 + - uid: 772 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 773 + components: + - type: Transform + pos: -7.5,11.5 + parent: 1 + - uid: 774 + components: + - type: Transform + pos: 9.5,7.5 + parent: 1 + - uid: 775 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1 + - uid: 776 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - uid: 777 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1 + - uid: 778 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 + - uid: 779 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 - proto: ChairOfficeDark entities: - uid: 249 @@ -2501,6 +2579,18 @@ entities: - type: DeviceNetwork deviceLists: - 281 +- proto: ForgeAmmoDrum20mmBase + entities: + - uid: 767 + components: + - type: Transform + pos: 5.4039745,-2.4066563 + parent: 1 + - uid: 768 + components: + - type: Transform + pos: 5.7320995,-2.6410313 + parent: 1 - proto: GasMixerOnFlipped entities: - uid: 543 @@ -3751,11 +3841,6 @@ entities: - type: Transform pos: -4.5,-2.5 parent: 1 - - uid: 481 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 1 - proto: LockerResearchDirectorFilled entities: - uid: 116 @@ -3847,13 +3932,6 @@ entities: - type: Transform pos: 5.5,4.5 parent: 1 -- proto: MachineMiniAnomalyGenerator - entities: - - uid: 687 - components: - - type: Transform - pos: 5.5,-2.5 - parent: 1 - proto: MatterBinStockPart entities: - uid: 759 @@ -3988,13 +4066,6 @@ entities: - type: Transform pos: 11.5,0.5 parent: 1 -- proto: PowerCellRecharger - entities: - - uid: 724 - components: - - type: Transform - pos: 5.5,1.5 - parent: 1 - proto: PoweredLEDSmallLight entities: - uid: 468 @@ -4105,6 +4176,14 @@ entities: - type: Transform pos: 2.5,4.5 parent: 1 +- proto: Rack + entities: + - uid: 687 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 - proto: RandomPosterAny entities: - uid: 478 @@ -4724,12 +4803,6 @@ entities: rot: 3.141592653589793 rad pos: -5.5,-4.5 parent: 1 - - uid: 690 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-5.5 - parent: 1 - uid: 698 components: - type: Transform @@ -5490,4 +5563,32 @@ entities: - type: Transform pos: -4.5,0.5 parent: 1 +- proto: WeaponCapacitorRecharger + entities: + - uid: 724 + components: + - type: Transform + pos: 5.5,1.5 + parent: 1 +- proto: WeaponTurretL85Autocannon + entities: + - uid: 690 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 +- proto: WeaponTurretM220 + entities: + - uid: 764 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,8.5 + parent: 1 + - uid: 765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 1 ... diff --git a/Resources/Maps/_Forge/Shuttles/Science/oblivion.yml b/Resources/Maps/_Forge/Shuttles/Science/oblivion.yml new file mode 100644 index 000000000000..c3b7871f18fa --- /dev/null +++ b/Resources/Maps/_Forge/Shuttles/Science/oblivion.yml @@ -0,0 +1,13807 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 02/02/2026 08:24:40 + entityCount: 1855 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 2: Space + 21: FloorConcrete + 17: FloorDarkOffset + 19: FloorDarkPavementVertical + 0: FloorGlass + 8: FloorHullReinforced + 20: FloorHydro + 4: FloorLino + 22: FloorMetalDiamond + 15: FloorMining + 7: FloorMiningDark + 6: FloorMiningLight + 3: FloorPlastic + 5: FloorRGlass + 16: FloorShuttleBlack + 13: FloorSteel + 12: FloorSteelCheckerLight + 9: FloorSteelMono + 14: FloorSteelPavement + 18: FloorTechMaint + 24: FloorWood + 10: FloorWoodLarge + 11: FloorWoodTile + 23: Lattice + 1: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Обливион + - type: Transform + pos: -2.5117197,0.24218798 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: BwAAAAAAAAcAAAAAAAABAAAAAAAABwAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAUAAAAAAAAJAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAkAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACgAAAAAAAAsAAAAAAAAKAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAFAAAAAAAAAEAAAAAAAALAAAAAAAACwAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAoAAAAAAAALAAAAAAAACgAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABQAAAAAAAABAAAAAAAACgAAAAAAAAoAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAKAAAAAAAACwAAAAAAAAoAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAUAAAAAAAAAQAAAAAAAAsAAAAAAAALAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAADQAAAAAAAA0AAAAAAAANAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAKAAAAAAAACgAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAOAAAAAAAACwAAAAAAAAsAAAAAAAAWAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAVAAAAAAAAFQAAAAAAABUAAAAAAAAWAAAAAAAAAQAAAAAAAAoAAAAAAAAKAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAALAAAAAAAACwAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAAAAAYAAAAAAAAFAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAAAGAAAAAAAABgAAAAAAAAUAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABgAAAAAAAAYAAAAAAAAFAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAFwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAXAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFwAAAAAAAAEAAAAAAAAWAAAAAAAABgAAAAAAAAUAAAAAAAAGAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAABgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABcAAAAAAAABAAAAAAAAFgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAGAAAAAAAAFgAAAAAAAAEAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAABAAAAAAAABAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAABYAAAAAAAABAAAAAAAAFgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAAQAAAAAAAAQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAYAAAAAAAAWAAAAAAAAAQAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAEAAAAAAAAEAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAA4AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAABcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAA== + version: 7 + 1,-1: + ind: 1,-1 + tiles: CQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAXAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAkAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAFwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAJAAAAAAAAAQAAAAAAAAEAAAAAAAAWAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAYAAAAAAAAWAAAAAAAABgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAABAAAAAAAAFgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAALAAAAAAAABgAAAAAAABYAAAAAAAAGAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAsAAAAAAAALAAAAAAAACwAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAKAAAAAAAACgAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACwAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAFwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAXAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + -1,-2: + ind: -1,-2 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAGAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABcAAAAAAAABAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAXAAAAAAAAAQAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAYAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAGAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAARAAAAAAAAEQAAAAAAABEAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAEQAAAAAAABEAAAAAAAARAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAABEAAAAAAAARAAAAAAAAEQAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAAFAAAAAAAABgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAABQAAAAAAAAYAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAUAAAAAAAAGAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAXAAAAAAAAAQAAAAAAAAYAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAGAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFwAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAAAAAUAAAAAAAAGAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAABgAAAAAAAA== + version: 7 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAAAAQAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAAHAAAAAAAABwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAQAAAAAAAAcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAkAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAkAAAAAAAAJAAAAAAAACQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAgAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAXAAAAAAAAFwAAAAAAABcAAAAAAAAIAAAAAAAAAQAAAAAAAAEAAAAAAAAJAAAAAAAABQAAAAAAAAkAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAFwAAAAAAABcAAAAAAAABAAAAAAAAAQAAAAAAABcAAAAAAAAXAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAACQAAAAAAAAUAAAAAAAAJAAAAAAAAAQAAAAAAAA== + version: 7 + 1,-2: + ind: 1,-2 + tiles: EgAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABIAAAAAAAABAAAAAAAAFwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAAAAQAAAAAAABcAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAATAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAATAAAAAAAAEwAAAAAAAA8AAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAAEwAAAAAAABMAAAAAAAAPAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAABMAAAAAAAATAAAAAAAADwAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA8AAAAAAAATAAAAAAAAEwAAAAAAAA8AAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAPAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAQAAAAAAABcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAEAAAAAAAAXAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + -1,-3: + ind: -1,-3 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAXAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAFwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAABcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAAAQAAAAAAAA== + version: 7 + 0,-3: + ind: 0,-3 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAXAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAEgAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAASAAAAAAAAEgAAAAAAABIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAEgAAAAAAABIAAAAAAAASAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAABIAAAAAAAASAAAAAAAAEgAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAEgAAAAAAABIAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAHAAAAAAAAAQAAAAAAABIAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 1,-3: + ind: 1,-3 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAABcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAXAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 571: 13,-32 + 572: 13,-28 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 472: 17,-17 + 473: 19,-17 + 474: 18,-17 + 475: 14,-23 + 569: 13,-38 + 570: 12,-39 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bot + decals: + 364: 12,-12 + 365: 12,-11 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 567: 12,-35 + 568: 12,-36 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: BotRightGreyscale + decals: + 470: 14,-21 + 471: 15,-21 + - node: + color: '#FFFFFFFF' + id: BoxGreyscale + decals: + 476: 13,-23 + 477: 15,-23 + 478: 19,-23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 553: 17,-25 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 548: 13,-26 + 551: 15,-25 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileDarkEndE + decals: + 555: 18,-27 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileDarkEndS + decals: + 566: 13,-32 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 556: 17,-27 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileDarkInnerNw + decals: + 550: 15,-26 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileDarkInnerSe + decals: + 561: 13,-27 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 554: 17,-26 + 562: 13,-28 + 563: 13,-29 + 564: 13,-30 + 565: 13,-31 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 549: 14,-26 + 552: 16,-25 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 557: 17,-27 + 558: 16,-27 + 559: 15,-27 + 560: 14,-27 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 543: 13,-31 + 544: 13,-30 + 545: 13,-29 + 546: 13,-28 + 547: 13,-27 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 11: 4,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNe + decals: + 39: 4,-5 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNw + decals: + 38: 7,-5 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSe + decals: + 6: 4,-5 + 41: 4,-2 + 42: 7,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSw + decals: + 5: 7,-5 + 40: 7,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 1: 4,-6 + 18: 4,-4 + 19: 4,-3 + 32: 7,-3 + 33: 7,-4 + 34: 7,-5 + 35: 7,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 12: 5,-2 + 13: 6,-2 + 14: 7,-2 + 15: 8,-2 + 16: 9,-2 + 25: 10,-2 + 36: 5,-5 + 37: 6,-5 + 47: 8,-6 + 48: 9,-6 + 49: 10,-6 + 50: 11,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 2: 5,-5 + 3: 6,-5 + 20: 5,-2 + 21: 6,-2 + 22: 8,-2 + 23: 9,-2 + 24: 10,-2 + 43: 8,-3 + 44: 9,-3 + 45: 10,-3 + 46: 11,-3 + 51: 8,-6 + 52: 9,-6 + 53: 10,-6 + 54: 11,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 4: 7,-6 + 7: 4,-6 + 8: 4,-5 + 9: 4,-4 + 10: 4,-3 + 26: 7,-3 + 27: 7,-4 + 75: 12,-6 + 76: 12,-5 + 77: 12,-4 + 78: 12,-3 + - node: + color: '#724276FF' + id: BrickTileWhiteCornerNe + decals: + 135: -1,-15 + 159: -4,-25 + - node: + color: '#724276FF' + id: BrickTileWhiteCornerNw + decals: + 114: -7,-15 + 115: -8,-17 + - node: + color: '#37789BFF' + id: BrickTileWhiteCornerSe + decals: + 191: 14,-19 + - node: + color: '#724276FF' + id: BrickTileWhiteCornerSe + decals: + 118: -2,-23 + 119: -1,-19 + - node: + color: '#37789BFF' + id: BrickTileWhiteCornerSw + decals: + 190: 12,-19 + - node: + color: '#724276FF' + id: BrickTileWhiteCornerSw + decals: + 116: -4,-23 + 117: -8,-19 + - node: + color: '#724276FF' + id: BrickTileWhiteEndN + decals: + 155: -2,-25 + - node: + color: '#724276FF' + id: BrickTileWhiteInnerNe + decals: + 156: -4,-26 + - node: + color: '#37789BFF' + id: BrickTileWhiteInnerNw + decals: + 204: 13,-18 + - node: + color: '#724276FF' + id: BrickTileWhiteInnerNw + decals: + 141: -7,-17 + 157: -2,-26 + - node: + color: '#37789BFF' + id: BrickTileWhiteInnerSe + decals: + 201: 14,-15 + - node: + color: '#724276FF' + id: BrickTileWhiteInnerSe + decals: + 140: -2,-19 + - node: + color: '#37789BFF' + id: BrickTileWhiteInnerSw + decals: + 203: 13,-16 + - node: + color: '#724276FF' + id: BrickTileWhiteInnerSw + decals: + 139: -4,-19 + 165: -2,-28 + - node: + color: '#37789BFF' + id: BrickTileWhiteLineE + decals: + 187: 14,-16 + 188: 14,-17 + 189: 14,-18 + - node: + color: '#724276FF' + id: BrickTileWhiteLineE + decals: + 120: -2,-22 + 121: -2,-21 + 122: -2,-20 + 123: -1,-17 + 124: -1,-16 + 147: -2,-28 + 148: -2,-29 + 149: -2,-30 + 150: -2,-31 + 153: -2,-27 + 154: -2,-26 + 170: -2,-32 + - node: + color: '#37789BFF' + id: BrickTileWhiteLineN + decals: + 192: 13,-15 + 193: 12,-15 + 194: 11,-15 + 200: 14,-15 + 207: 12,-18 + - node: + color: '#724276FF' + id: BrickTileWhiteLineN + decals: + 127: -5,-15 + 128: -4,-15 + 129: -3,-15 + 130: -2,-15 + - node: + color: '#37789BFF' + id: BrickTileWhiteLineS + decals: + 195: 11,-16 + 196: 12,-16 + - node: + color: '#724276FF' + id: BrickTileWhiteLineS + decals: + 125: -6,-19 + 126: -5,-19 + 163: -4,-28 + 164: -3,-28 + - node: + color: '#37789BFF' + id: BrickTileWhiteLineW + decals: + 206: 13,-17 + - node: + color: '#724276FF' + id: BrickTileWhiteLineW + decals: + 131: -8,-18 + 132: -4,-22 + 133: -4,-21 + 134: -4,-20 + 142: -7,-16 + 166: -2,-29 + 167: -2,-30 + 168: -2,-31 + 169: -2,-32 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Caution + decals: + 110: -7,-19 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimCornerSe + decals: + 295: 12,-9 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimCornerSw + decals: + 307: 0,-9 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimLineN + decals: + 309: 2,-8 + 310: 1,-8 + 311: 3,-8 + 312: 4,-8 + 313: 5,-8 + 314: 6,-8 + 315: 7,-8 + 316: 8,-8 + 317: 9,-8 + 318: 10,-8 + 319: 11,-8 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimLineS + decals: + 296: 11,-9 + 297: 10,-9 + 298: 9,-9 + 299: 8,-9 + 300: 7,-9 + 301: 6,-9 + 302: 5,-9 + 303: 4,-9 + 304: 3,-9 + 305: 2,-9 + 306: 1,-9 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 507: 13,-25 + 508: 14,-25 + 509: 16,-29 + 510: 16,-30 + 511: 16,-31 + 512: 16,-32 + 514: 14,-37 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 362: 12,-13 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 86: 12,-3 + 87: 4,-6 + 244: 17,-21 + 249: 12,-18 + 250: 11,-15 + 251: 16,-15 + 252: 18,-15 + - node: + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 489: 16,-22 + 490: 13,-21 + 491: 16,-20 + 492: 19,-20 + 493: 16,-17 + 494: 18,-23 + 495: 15,-23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 83: 10,-5 + 254: 14,-34 + 259: 14,-15 + 320: 0,-9 + 321: 1,-9 + 323: 1,-8 + 324: 2,-8 + 325: 2,-9 + 326: 3,-9 + 327: 3,-8 + 328: 4,-8 + 329: 4,-9 + 330: 5,-9 + 331: 5,-8 + 332: 6,-8 + 333: 6,-9 + 334: 7,-8 + 335: 7,-9 + 336: 8,-9 + 337: 8,-8 + 338: 9,-8 + 339: 9,-9 + 340: 10,-9 + 341: 10,-8 + 342: 11,-8 + 343: 11,-9 + 344: 12,-9 + 358: 8,-12 + 359: 6,-13 + 360: 11,-13 + 361: 11,-11 + 524: 13,-31 + 525: 13,-30 + 526: 13,-29 + 527: 13,-28 + 528: 13,-26 + 529: 14,-26 + 530: 13,-27 + 531: 14,-27 + 532: 15,-27 + 533: 16,-27 + 534: 17,-27 + 535: 17,-26 + 536: 17,-25 + 537: 16,-25 + 538: 16,-26 + 539: 15,-26 + 540: 15,-25 + 541: 18,-27 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 84: 5,-4 + 260: 13,-18 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 85: 7,-5 + 258: 16,-15 + - node: + color: '#724276FF' + id: MiniTileWhiteInnerNe + decals: + 97: -5,-19 + - node: + color: '#724276FF' + id: MiniTileWhiteInnerNw + decals: + 100: -1,-19 + - node: + color: '#724276FF' + id: MiniTileWhiteInnerSe + decals: + 107: -5,-15 + - node: + color: '#724276FF' + id: MiniTileWhiteInnerSw + decals: + 104: -1,-15 + - node: + color: '#724276FF' + id: MiniTileWhiteLineE + decals: + 94: -5,-16 + 95: -5,-17 + 96: -5,-18 + - node: + color: '#724276FF' + id: MiniTileWhiteLineN + decals: + 98: -4,-19 + 99: -2,-19 + - node: + color: '#724276FF' + id: MiniTileWhiteLineS + decals: + 105: -2,-15 + 106: -4,-15 + - node: + color: '#724276FF' + id: MiniTileWhiteLineW + decals: + 101: -1,-18 + 102: -1,-17 + 103: -1,-16 + - node: + color: '#A05212F7' + id: OldConcreteTrimCornerNe + decals: + 426: 19,-17 + - node: + color: '#A05212F7' + id: OldConcreteTrimCornerNw + decals: + 447: 16,-17 + 465: 13,-21 + - node: + color: '#A05212F7' + id: OldConcreteTrimCornerSe + decals: + 432: 19,-23 + - node: + color: '#A05212F7' + id: OldConcreteTrimCornerSw + decals: + 438: 13,-23 + - node: + color: '#A05212F7' + id: OldConcreteTrimInnerNw + decals: + 443: 16,-21 + - node: + color: '#A05212F7' + id: OldConcreteTrimLineN + decals: + 441: 14,-21 + 442: 15,-21 + 448: 17,-17 + 449: 18,-17 + - node: + color: '#A05212F7' + id: OldConcreteTrimLineS + decals: + 433: 18,-23 + 434: 17,-23 + 436: 15,-23 + 437: 14,-23 + - node: + color: '#A05212F7' + id: OldConcreteTrimLineW + decals: + 439: 13,-22 + 444: 16,-20 + 445: 16,-19 + 446: 16,-18 + - node: + cleanable: True + color: '#951710FF' + id: PuddleC + decals: + 357: 0.7801585,-13.343033 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Rust + decals: + 236: 13,-34 + 238: 13,-15 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: StandClearGreyscale + decals: + 468: 19,-21 + 469: 19,-19 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WarnBoxGreyscale + decals: + 423: -8,-16 + 424: -8,-15 + 425: 19,-14 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleNE + decals: + 482: -5,-25 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleNW + decals: + 481: -7,-25 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleSE + decals: + 346: 0,-8 + 350: 10,-11 + 480: -5,-28 + - node: + color: '#FFFFFFFF' + id: WarnCornerGreyscaleSW + decals: + 347: 12,-8 + 348: 8,-11 + 479: -7,-28 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 172: -3,-29 + 460: 18,-19 + 500: -6,-21 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 461: 17,-19 + 501: -8,-21 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 462: 18,-22 + 497: -6,-23 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 455: 17,-22 + 496: -8,-23 + 505: 18,-26 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 277: 13,-38 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 278: 13,-34 + - node: + color: '#FFFFFFFF' + id: WarnEndE + decals: + 186: 12,-17 + - node: + color: '#FFFFFFFF' + id: WarnFull + decals: + 286: 16,-29 + 287: 16,-30 + 288: 16,-31 + 289: 16,-32 + - node: + color: '#A05212F7' + id: WarnLineE + decals: + 450: 19,-18 + 451: 19,-19 + 452: 19,-20 + 453: 19,-21 + 454: 19,-22 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 173: -3,-30 + 174: -3,-31 + 183: -3,-32 + 211: 13,-36 + 212: 13,-37 + 280: 13,-35 + 290: 15,-29 + 291: 15,-30 + 292: 15,-31 + 293: 15,-32 + 458: 18,-21 + 459: 18,-20 + 503: -6,-22 + - node: + color: '#724276FF' + id: WarnLineGreyscaleE + decals: + 136: -1,-18 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleE + decals: + 484: -5,-27 + 485: -5,-26 + - node: + color: '#724276FF' + id: WarnLineGreyscaleN + decals: + 108: -3,-19 + 137: -6,-15 + 152: -3,-26 + - node: + color: '#A05212F7' + id: WarnLineGreyscaleN + decals: + 466: 13,-21 + 467: 16,-17 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleN + decals: + 488: -6,-25 + - node: + color: '#37789BFF' + id: WarnLineGreyscaleS + decals: + 197: 13,-19 + - node: + color: '#724276FF' + id: WarnLineGreyscaleS + decals: + 109: -3,-15 + 138: -3,-23 + - node: + color: '#A05212F7' + id: WarnLineGreyscaleS + decals: + 463: 16,-23 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleS + decals: + 349: 9,-11 + 483: -6,-28 + - node: + color: '#37789BFF' + id: WarnLineGreyscaleW + decals: + 208: 12,-18 + - node: + color: '#FFFFFFFF' + id: WarnLineGreyscaleW + decals: + 486: -7,-27 + 487: -7,-26 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 111: -7,-19 + 279: 14,-34 + 499: -7,-23 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 92: 0,-15 + 93: 0,-16 + 144: -4,-26 + 145: -4,-27 + 161: -4,-25 + 171: -4,-28 + 198: 11,-16 + 199: 11,-15 + 456: 17,-21 + 457: 17,-20 + 498: -8,-22 + 506: 18,-25 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 175: -4,-29 + 182: -5,-29 + 216: 14,-38 + 502: -7,-21 + 504: 18,-28 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 352: 5,-11 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 351: 3,-11 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 353: 5,-13 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 356: 3,-13 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 402: 18,-10 + 403: 19,-12 + 404: 17,-8 + 422: -2,-8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WoodTrimThinEndW + decals: + 383: 14,-12 + 384: 14,-10 + 385: 14,-8 + 407: -7,-12 + 408: -8,-10 + 409: -6,-8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 375: -6,-9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 355: 5,-12 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 386: 15,-10 + 387: 16,-10 + 388: 17,-10 + 389: 15,-8 + 390: 16,-8 + 391: 15,-12 + 392: 16,-12 + 393: 17,-12 + 394: 18,-12 + 410: -7,-10 + 411: -6,-10 + 412: -5,-10 + 419: -5,-8 + 420: -4,-8 + 421: -3,-8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 395: 15,-12 + 396: 16,-12 + 397: 17,-12 + 398: 18,-12 + 399: 15,-10 + 400: 16,-10 + 401: 17,-10 + 405: 15,-8 + 406: 16,-8 + 413: -7,-10 + 414: -6,-10 + 415: -5,-10 + 416: -5,-8 + 417: -4,-8 + 418: -3,-8 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 354: 3,-12 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt1 + decals: + 81: 7,-6 + 82: 8,-3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt2 + decals: + 79: 3,-3 + - node: + cleanable: True + color: '#FFFFFFFF' + id: burnt4 + decals: + 80: 12,-6 + - node: + cleanable: True + color: '#FFFFFFFF' + id: cyka + decals: + 363: 10,-11 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 1 + 1: 2 + 0,-1: + 2: 4096 + 0: 2239 + 2,0: + 1: 4 + 0: 8 + 2,-1: + 2: 32768 + 0: 2047 + 0,-4: + 0: 61491 + 1: 136 + -1,-4: + 0: 45311 + 0,-3: + 0: 63743 + -1,-3: + 0: 62395 + 0,-2: + 0: 47887 + -1,-2: + 0: 41591 + -1,-1: + 0: 170 + 1: 33808 + 0,-5: + 2: 34816 + 0: 1792 + 1: 2 + 1,-4: + 1: 153 + 0: 61440 + 1,-3: + 0: 62463 + 1,-2: + 0: 65311 + 1,-1: + 0: 4095 + 1,-5: + 2: 40704 + 1: 144 + 0: 96 + 2,-4: + 1: 17 + 0: 61644 + 2,-3: + 0: 61695 + 2,-2: + 0: 65295 + 2,-5: + 2: 4352 + 0: 3584 + 1: 4 + 3,-4: + 0: 53495 + 3,-3: + 0: 64733 + 3,-2: + 0: 21965 + 3,-1: + 0: 85 + 1: 4736 + 3,-5: + 0: 30578 + 4,-4: + 0: 63761 + 4,-3: + 0: 30719 + 4,-2: + 0: 19 + 2: 5120 + 1: 8320 + 4,-1: + 1: 1 + -3,-4: + 1: 512 + 0: 57344 + 2: 68 + -3,-3: + 0: 228 + 1: 16896 + -3,-5: + 2: 17408 + 1: 64 + -2,-4: + 0: 62719 + -2,-3: + 0: 61439 + -3,-2: + 1: 8 + -2,-5: + 0: 65522 + -2,-2: + 1: 16400 + 0: 140 + 2: 33280 + -2,-1: + 1: 8 + -1,-5: + 0: 65527 + 4,-5: + 0: 65535 + 5,-4: + 0: 28672 + 2: 34 + 1: 1024 + 5,-3: + 0: 114 + 1: 9216 + 5,-2: + 1: 1 + 5,-5: + 2: 8704 + 1: 32 + -3,-7: + 1: 32768 + -2,-6: + 0: 30576 + -2,-8: + 1: 258 + 2: 544 + 0: 34952 + -2,-7: + 0: 61166 + -1,-8: + 0: 30583 + -1,-7: + 0: 30583 + -1,-6: + 0: 30578 + -1,-9: + 0: 18158 + 0,-8: + 1: 1 + 0,-7: + 1: 8448 + 0,-6: + 1: 771 + 0,-9: + 1: 4096 + 2,-7: + 1: 18432 + 2,-6: + 1: 3084 + 2,-8: + 1: 8 + 2,-9: + 1: 32768 + 3,-8: + 0: 43690 + 3,-7: + 0: 61162 + 3,-6: + 0: 61152 + 3,-9: + 0: 9847 + 4,-8: + 0: 4369 + 1: 2052 + 2: 1088 + 4,-7: + 0: 30580 + 4,-6: + 0: 65521 + 5,-7: + 1: 4096 + -2,-9: + 1: 1032 + 2: 2176 + -1,-10: + 1: 18 + 0: 60544 + -1,-11: + 1: 16384 + 2: 128 + 0,-12: + 1: 4096 + 2,-12: + 1: 32768 + 3,-11: + 2: 16 + 1: 8192 + 3,-10: + 0: 29456 + 1: 132 + 4,-9: + 1: 513 + 2: 272 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: NavMap + - type: BecomesStation + id: Oblivion + - type: IFF + color: '#FFFFFFFF' +- proto: ADTSalvageAirlock + entities: + - uid: 506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-15.5 + parent: 1 + - uid: 992 + components: + - type: Transform + pos: 13.5,-19.5 + parent: 1 +- proto: AirAlarm + entities: + - uid: 413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 1 + - type: DeviceList + devices: + - 637 + - 956 + - 942 + - 941 + - uid: 554 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - type: DeviceList + devices: + - 919 + - 920 + - 911 + - 910 + - 902 + - 901 + - 885 + - 886 + - uid: 688 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 1 + - type: DeviceList + devices: + - 807 + - 808 + - uid: 690 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 1 + - type: DeviceList + devices: + - 689 + - uid: 729 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-29.5 + parent: 1 + - type: DeviceList + devices: + - 790 + - 789 + - uid: 809 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-34.5 + parent: 1 + - type: DeviceList + devices: + - 772 + - 773 + - uid: 1050 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-19.5 + parent: 1 + - type: DeviceList + devices: + - 1176 + - 1175 + - uid: 1051 + components: + - type: Transform + pos: 13.5,-13.5 + parent: 1 + - type: DeviceList + devices: + - 1159 + - 1158 + - uid: 1052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-13.5 + parent: 1 + - type: DeviceList + devices: + - 1080 + - 1133 + - uid: 1087 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 1 + - uid: 1112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-28.5 + parent: 1 + - type: DeviceList + devices: + - 1182 + - 1183 + - uid: 1244 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-35.5 + parent: 1 +- proto: AirlockAtmospherics + entities: + - uid: 696 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 1 +- proto: AirlockCaptainLocked + entities: + - uid: 355 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 +- proto: AirlockCommandGlass + entities: + - uid: 356 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 +- proto: AirlockEngineering + entities: + - uid: 1057 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 1 + - uid: 1058 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 1 + - uid: 1062 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 1 +- proto: AirlockExternal + entities: + - uid: 12 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-2.5 + parent: 1 + - uid: 297 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 299 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - uid: 300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 301: + - - DoorStatus + - DoorBolt + - uid: 301 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 300: + - - DoorStatus + - DoorBolt + - uid: 302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1 + - type: Door + secondsUntilStateChange: -4053.8572 + state: Opening + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 303: + - - DoorStatus + - DoorBolt + lastSignals: + DoorStatus: True + - uid: 303 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 1 + - type: DeviceLinkSink + invokeCounter: 1 + - type: DeviceLinkSource + linkedPorts: + 302: + - - DoorStatus + - DoorBolt + - uid: 605 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-10.5 + parent: 1 + - uid: 1007 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-12.5 + parent: 1 + - uid: 1655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 1 + - uid: 1656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 1 +- proto: AirlockGlass + entities: + - uid: 551 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - type: Door + secondsUntilStateChange: -2857.4817 + state: Opening + - type: DeviceLinkSource + lastSignals: + DoorStatus: True + - uid: 552 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 1 + - uid: 628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-13.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 1793 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 1 + - uid: 1795 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-10.5 + parent: 1 + - uid: 1796 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-12.5 + parent: 1 + - uid: 1806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 1 + - uid: 1832 + components: + - type: Transform + pos: 6.5,-18.5 + parent: 1 + - uid: 1839 + components: + - type: Transform + pos: 5.5,-18.5 + parent: 1 +- proto: AirlockMedicalGlass + entities: + - uid: 988 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 1 +- proto: AirlockScience + entities: + - uid: 612 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 1 + - uid: 691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 1 +- proto: AirlockScienceGlass + entities: + - uid: 642 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 1 +- proto: AirSensor + entities: + - uid: 689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 690 +- proto: AnomalyScanner + entities: + - uid: 715 + components: + - type: Transform + pos: -4.5677004,-27.309618 + parent: 1 + - uid: 716 + components: + - type: Transform + pos: -4.4309816,-27.64165 + parent: 1 +- proto: APCBasic + entities: + - uid: 412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 553 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 687 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-20.5 + parent: 1 + - uid: 692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + - uid: 728 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-27.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 1 + - uid: 1047 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 1 + - uid: 1048 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-17.5 + parent: 1 + - uid: 1049 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-15.5 + parent: 1 + - uid: 1082 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 1 + - uid: 1124 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 1 + - uid: 229 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-2.5 + parent: 1 + - uid: 369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1 + - uid: 433 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 1 + - uid: 591 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-12.5 + parent: 1 + - uid: 635 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 1 + - uid: 757 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 1 + - uid: 1030 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-19.5 + parent: 1 + - uid: 1031 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-20.5 + parent: 1 + - uid: 1032 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 1 + - uid: 1691 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 1 + - uid: 1792 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-10.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 108 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 0.5,-31.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 21.5,-18.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 10.5,-24.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 0.5,-32.5 + parent: 1 + - uid: 912 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 + - uid: 1115 + components: + - type: Transform + pos: 11.5,-32.5 + parent: 1 + - uid: 1614 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 1615 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 1616 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 1617 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 1618 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 1619 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 1620 + components: + - type: Transform + pos: 10.5,0.5 + parent: 1 + - uid: 1621 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - uid: 1622 + components: + - type: Transform + pos: 13.5,-1.5 + parent: 1 + - uid: 1623 + components: + - type: Transform + pos: 15.5,-2.5 + parent: 1 + - uid: 1624 + components: + - type: Transform + pos: 16.5,-3.5 + parent: 1 + - uid: 1625 + components: + - type: Transform + pos: 17.5,-4.5 + parent: 1 + - uid: 1626 + components: + - type: Transform + pos: 19.5,-6.5 + parent: 1 + - uid: 1627 + components: + - type: Transform + pos: 20.5,-7.5 + parent: 1 + - uid: 1628 + components: + - type: Transform + pos: 19.5,-29.5 + parent: 1 + - uid: 1629 + components: + - type: Transform + pos: 20.5,-24.5 + parent: 1 + - uid: 1630 + components: + - type: Transform + pos: 18.5,-31.5 + parent: 1 + - uid: 1631 + components: + - type: Transform + pos: 17.5,-33.5 + parent: 1 + - uid: 1632 + components: + - type: Transform + pos: 16.5,-35.5 + parent: 1 + - uid: 1634 + components: + - type: Transform + pos: 14.5,-39.5 + parent: 1 + - uid: 1635 + components: + - type: Transform + pos: 13.5,-40.5 + parent: 1 + - uid: 1637 + components: + - type: Transform + pos: 15.5,-38.5 + parent: 1 + - uid: 1640 + components: + - type: Transform + pos: 11.5,-44.5 + parent: 1 + - uid: 1641 + components: + - type: Transform + pos: 0.5,-44.5 + parent: 1 + - uid: 1642 + components: + - type: Transform + pos: -1.5,-40.5 + parent: 1 + - uid: 1643 + components: + - type: Transform + pos: -2.5,-39.5 + parent: 1 + - uid: 1644 + components: + - type: Transform + pos: -3.5,-38.5 + parent: 1 + - uid: 1645 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 1 + - uid: 1646 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 1 + - uid: 1647 + components: + - type: Transform + pos: -5.5,-33.5 + parent: 1 + - uid: 1648 + components: + - type: Transform + pos: -6.5,-31.5 + parent: 1 + - uid: 1649 + components: + - type: Transform + pos: -7.5,-29.5 + parent: 1 + - uid: 1650 + components: + - type: Transform + pos: -8.5,-24.5 + parent: 1 + - uid: 1658 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-8.5 + parent: 1 + - uid: 1659 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 1 + - uid: 1660 + components: + - type: Transform + pos: -10.5,-13.5 + parent: 1 + - uid: 1669 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 1 + - uid: 1670 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 1 + - uid: 1672 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 1 + - uid: 1673 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 1 + - uid: 1675 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 1 + - uid: 1763 + components: + - type: Transform + pos: 21.5,-8.5 + parent: 1 + - uid: 1764 + components: + - type: Transform + pos: 22.5,-9.5 + parent: 1 + - uid: 1767 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 1 + - uid: 1768 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 1 + - uid: 1769 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 1 + - uid: 1770 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 1 + - uid: 1771 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 1 + - uid: 1791 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 1 + - uid: 1794 + components: + - type: Transform + pos: 0.5,-25.5 + parent: 1 + - uid: 1797 + components: + - type: Transform + pos: 11.5,-25.5 + parent: 1 + - uid: 1798 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 1 + - uid: 1799 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 1 + - uid: 1800 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 1 + - uid: 1801 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 1 + - uid: 1802 + components: + - type: Transform + pos: 0.5,-21.5 + parent: 1 + - uid: 1803 + components: + - type: Transform + pos: 1.5,-21.5 + parent: 1 + - uid: 1804 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 1 + - uid: 1805 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 1 + - uid: 1807 + components: + - type: Transform + pos: 10.5,-19.5 + parent: 1 + - uid: 1809 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 + - uid: 1810 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-17.5 + parent: 1 + - uid: 1811 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-16.5 + parent: 1 + - uid: 1812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-15.5 + parent: 1 + - uid: 1813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-14.5 + parent: 1 + - uid: 1814 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-17.5 + parent: 1 + - uid: 1815 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-16.5 + parent: 1 + - uid: 1816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-15.5 + parent: 1 + - uid: 1817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-14.5 + parent: 1 + - uid: 1818 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 1 + - uid: 1819 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-16.5 + parent: 1 + - uid: 1820 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-15.5 + parent: 1 + - uid: 1821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-14.5 + parent: 1 + - uid: 1822 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 1 + - uid: 1823 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-16.5 + parent: 1 + - uid: 1824 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 1 + - uid: 1825 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-14.5 + parent: 1 + - uid: 1826 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-17.5 + parent: 1 + - uid: 1827 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-17.5 + parent: 1 + - uid: 1830 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-18.5 + parent: 1 + - uid: 1831 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-18.5 + parent: 1 +- proto: Autolathe + entities: + - uid: 481 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 1 +- proto: BannerNSC + entities: + - uid: 1668 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 +- proto: BannerTL + entities: + - uid: 1661 + components: + - type: Transform + pos: 12.5,-7.5 + parent: 1 +- proto: BarSign + entities: + - uid: 494 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 1 +- proto: BarSignSpacebucks + entities: + - uid: 918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-10.5 + parent: 1 + - uid: 1696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 1 +- proto: Beaker + entities: + - uid: 471 + components: + - type: Transform + pos: -6.5909414,-15.393316 + parent: 1 +- proto: Bed + entities: + - uid: 400 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 +- proto: BedsheetMedical + entities: + - uid: 1003 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-14.5 + parent: 1 +- proto: BedsheetSpawner + entities: + - uid: 401 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 +- proto: BenchComfy + entities: + - uid: 565 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1 + - uid: 566 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 + - uid: 569 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 +- proto: BenchSofaCorpCorner + entities: + - uid: 1698 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 1 +- proto: BenchSofaCorpLeft + entities: + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-12.5 + parent: 1 + - uid: 882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-12.5 + parent: 1 +- proto: BenchSofaCorpMiddle + entities: + - uid: 76 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 1 + - uid: 438 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-12.5 + parent: 1 +- proto: BenchSofaCorpRight + entities: + - uid: 865 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-12.5 + parent: 1 + - uid: 932 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 11 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-19.5 + parent: 1 + - uid: 623 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 1 + - uid: 624 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 1 + - uid: 1591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-20.5 + parent: 1 + - uid: 1613 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-21.5 + parent: 1 +- proto: BlastDoorOpen + entities: + - uid: 1664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 1 + - uid: 1665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 1 +- proto: BlueprintLithograph + entities: + - uid: 621 + components: + - type: Transform + pos: -3.5,-16.5 + parent: 1 +- proto: BookRandomStory + entities: + - uid: 580 + components: + - type: Transform + pos: -5.4764585,-7.5408306 + parent: 1 + - uid: 581 + components: + - type: Transform + pos: -5.4569273,-7.7556744 + parent: 1 +- proto: BoozeDispenser + entities: + - uid: 489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 1 +- proto: BoxFolderRed + entities: + - uid: 376 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.63705456,-5.660986 + parent: 1 +- proto: BrokenBottle + entities: + - uid: 174 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.3118224,-12.801771 + parent: 1 + - uid: 1690 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.1868224,-12.780937 + parent: 1 +- proto: ButtonFrameCaution + entities: + - uid: 1046 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-18.5 + parent: 1 + - uid: 1666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 1 +- proto: ButtonFrameExit + entities: + - uid: 648 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-17.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 168 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 1 + - uid: 749 + components: + - type: Transform + pos: 15.5,-30.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: 15.5,-31.5 + parent: 1 + - uid: 1083 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 1 + - uid: 1215 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 1 + - uid: 1277 + components: + - type: Transform + pos: 12.5,-36.5 + parent: 1 + - uid: 1286 + components: + - type: Transform + pos: 12.5,-34.5 + parent: 1 + - uid: 1287 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 1 + - uid: 1301 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 1 + - uid: 1355 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 1 + - uid: 1356 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 1 + - uid: 1357 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 1 + - uid: 1358 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 1 + - uid: 1359 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 1 + - uid: 1360 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 1 + - uid: 1361 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 1 + - uid: 1362 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 1 + - uid: 1363 + components: + - type: Transform + pos: 14.5,-25.5 + parent: 1 + - uid: 1364 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 1 + - uid: 1365 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 1 + - uid: 1366 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 1 + - uid: 1367 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 1 + - uid: 1368 + components: + - type: Transform + pos: 13.5,-25.5 + parent: 1 + - uid: 1369 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 1 + - uid: 1370 + components: + - type: Transform + pos: 17.5,-25.5 + parent: 1 + - uid: 1371 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 1 + - uid: 1372 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 1 + - uid: 1373 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 1 + - uid: 1374 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 1 + - uid: 1375 + components: + - type: Transform + pos: 18.5,-17.5 + parent: 1 + - uid: 1376 + components: + - type: Transform + pos: 19.5,-17.5 + parent: 1 + - uid: 1377 + components: + - type: Transform + pos: 17.5,-17.5 + parent: 1 + - uid: 1378 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 1 + - uid: 1379 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 1 + - uid: 1380 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 1 + - uid: 1381 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 1 + - uid: 1382 + components: + - type: Transform + pos: 17.5,-22.5 + parent: 1 + - uid: 1383 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 1 + - uid: 1384 + components: + - type: Transform + pos: 15.5,-21.5 + parent: 1 + - uid: 1385 + components: + - type: Transform + pos: 14.5,-21.5 + parent: 1 + - uid: 1386 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 1 + - uid: 1387 + components: + - type: Transform + pos: 13.5,-15.5 + parent: 1 + - uid: 1388 + components: + - type: Transform + pos: 12.5,-15.5 + parent: 1 + - uid: 1389 + components: + - type: Transform + pos: 11.5,-15.5 + parent: 1 + - uid: 1390 + components: + - type: Transform + pos: 14.5,-15.5 + parent: 1 + - uid: 1391 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 1 + - uid: 1392 + components: + - type: Transform + pos: 13.5,-17.5 + parent: 1 + - uid: 1393 + components: + - type: Transform + pos: 12.5,-17.5 + parent: 1 + - uid: 1394 + components: + - type: Transform + pos: 11.5,-17.5 + parent: 1 + - uid: 1395 + components: + - type: Transform + pos: 10.5,-17.5 + parent: 1 + - uid: 1396 + components: + - type: Transform + pos: 9.5,-17.5 + parent: 1 + - uid: 1397 + components: + - type: Transform + pos: 8.5,-17.5 + parent: 1 + - uid: 1398 + components: + - type: Transform + pos: 8.5,-16.5 + parent: 1 + - uid: 1399 + components: + - type: Transform + pos: 8.5,-15.5 + parent: 1 + - uid: 1400 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 1 + - uid: 1401 + components: + - type: Transform + pos: 7.5,-14.5 + parent: 1 + - uid: 1402 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 1 + - uid: 1403 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 1 + - uid: 1404 + components: + - type: Transform + pos: 4.5,-14.5 + parent: 1 + - uid: 1405 + components: + - type: Transform + pos: 3.5,-14.5 + parent: 1 + - uid: 1406 + components: + - type: Transform + pos: 3.5,-15.5 + parent: 1 + - uid: 1407 + components: + - type: Transform + pos: 3.5,-16.5 + parent: 1 + - uid: 1408 + components: + - type: Transform + pos: 3.5,-17.5 + parent: 1 + - uid: 1409 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 1 + - uid: 1410 + components: + - type: Transform + pos: 13.5,-21.5 + parent: 1 + - uid: 1411 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 1 + - uid: 1412 + components: + - type: Transform + pos: 14.5,-7.5 + parent: 1 + - uid: 1413 + components: + - type: Transform + pos: 15.5,-7.5 + parent: 1 + - uid: 1414 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 1 + - uid: 1415 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 1 + - uid: 1416 + components: + - type: Transform + pos: 17.5,-8.5 + parent: 1 + - uid: 1417 + components: + - type: Transform + pos: 17.5,-9.5 + parent: 1 + - uid: 1418 + components: + - type: Transform + pos: 17.5,-10.5 + parent: 1 + - uid: 1419 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 1 + - uid: 1420 + components: + - type: Transform + pos: 18.5,-10.5 + parent: 1 + - uid: 1421 + components: + - type: Transform + pos: 19.5,-10.5 + parent: 1 + - uid: 1422 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - uid: 1423 + components: + - type: Transform + pos: 15.5,-10.5 + parent: 1 + - uid: 1424 + components: + - type: Transform + pos: 14.5,-10.5 + parent: 1 + - uid: 1425 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 1426 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 1427 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - uid: 1428 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 1429 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 1430 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 1431 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 1432 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 1433 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 1434 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 1435 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1 + - uid: 1436 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 1437 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1 + - uid: 1438 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 1439 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 + - uid: 1440 + components: + - type: Transform + pos: 3.5,-11.5 + parent: 1 + - uid: 1441 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 1 + - uid: 1442 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 1443 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 1 + - uid: 1444 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 + - uid: 1445 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 + - uid: 1446 + components: + - type: Transform + pos: 5.5,-11.5 + parent: 1 + - uid: 1447 + components: + - type: Transform + pos: 7.5,-11.5 + parent: 1 + - uid: 1448 + components: + - type: Transform + pos: 8.5,-11.5 + parent: 1 + - uid: 1449 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 1 + - uid: 1450 + components: + - type: Transform + pos: 10.5,-11.5 + parent: 1 + - uid: 1451 + components: + - type: Transform + pos: 11.5,-11.5 + parent: 1 + - uid: 1452 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1 + - uid: 1453 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 1454 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 1455 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 1 + - uid: 1456 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 1 + - uid: 1457 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - uid: 1458 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 1459 + components: + - type: Transform + pos: 9.5,-4.5 + parent: 1 + - uid: 1460 + components: + - type: Transform + pos: 10.5,-4.5 + parent: 1 + - uid: 1461 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 1462 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 + - uid: 1463 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - uid: 1464 + components: + - type: Transform + pos: 12.5,-4.5 + parent: 1 + - uid: 1465 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 1466 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 1467 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 1468 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 1469 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 1470 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 1471 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 1472 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - uid: 1473 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 1 + - uid: 1474 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 1 + - uid: 1475 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 + - uid: 1476 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 1 + - uid: 1477 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 1 + - uid: 1478 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 1 + - uid: 1479 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 + - uid: 1480 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 1 + - uid: 1481 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 1 + - uid: 1482 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 1 + - uid: 1483 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 1 + - uid: 1484 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 1 + - uid: 1485 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 1 + - uid: 1486 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 1 + - uid: 1487 + components: + - type: Transform + pos: -3.5,-20.5 + parent: 1 + - uid: 1488 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 1 + - uid: 1489 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 1 + - uid: 1490 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 1 + - uid: 1491 + components: + - type: Transform + pos: -1.5,-23.5 + parent: 1 + - uid: 1492 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 1 + - uid: 1493 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 1 + - uid: 1494 + components: + - type: Transform + pos: -2.5,-17.5 + parent: 1 + - uid: 1495 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 1 + - uid: 1496 + components: + - type: Transform + pos: -2.5,-15.5 + parent: 1 + - uid: 1497 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1 + - uid: 1498 + components: + - type: Transform + pos: -0.5,-17.5 + parent: 1 + - uid: 1499 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 1 + - uid: 1500 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 1 + - uid: 1501 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 1 + - uid: 1502 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 1 + - uid: 1503 + components: + - type: Transform + pos: -6.5,-17.5 + parent: 1 + - uid: 1504 + components: + - type: Transform + pos: -7.5,-17.5 + parent: 1 + - uid: 1505 + components: + - type: Transform + pos: -6.5,-18.5 + parent: 1 + - uid: 1506 + components: + - type: Transform + pos: -6.5,-19.5 + parent: 1 + - uid: 1507 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 1 + - uid: 1508 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 1 + - uid: 1509 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 1 + - uid: 1510 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 1 + - uid: 1511 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 1 + - uid: 1512 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 1 + - uid: 1513 + components: + - type: Transform + pos: -4.5,-25.5 + parent: 1 + - uid: 1514 + components: + - type: Transform + pos: -2.5,-28.5 + parent: 1 + - uid: 1515 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 1 + - uid: 1516 + components: + - type: Transform + pos: -2.5,-29.5 + parent: 1 + - uid: 1517 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 1 + - uid: 1518 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 1 + - uid: 1519 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 1 + - uid: 1520 + components: + - type: Transform + pos: -0.5,-35.5 + parent: 1 + - uid: 1521 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 1 + - uid: 1522 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 1 + - uid: 1523 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 1 + - uid: 1524 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 1 + - uid: 1525 + components: + - type: Transform + pos: 0.5,-33.5 + parent: 1 + - uid: 1575 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 1 + - uid: 1576 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 1 + - uid: 1577 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 1 + - uid: 1693 + components: + - type: Transform + pos: -7.5,-10.5 + parent: 1 + - uid: 1842 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 1 +- proto: CableApcStack10 + entities: + - uid: 709 + components: + - type: Transform + pos: -3.6850128,-28.352081 + parent: 1 +- proto: CableHV + entities: + - uid: 930 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 1 + - uid: 1060 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 1 + - uid: 1061 + components: + - type: Transform + pos: 15.5,-28.5 + parent: 1 + - uid: 1111 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 1 + - uid: 1116 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 1 + - uid: 1119 + components: + - type: Transform + pos: 14.5,-36.5 + parent: 1 + - uid: 1120 + components: + - type: Transform + pos: 14.5,-37.5 + parent: 1 + - uid: 1227 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 1 + - uid: 1228 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 1 + - uid: 1229 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 1 + - uid: 1230 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 1 + - uid: 1231 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 1 + - uid: 1232 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 1 + - uid: 1233 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 1 + - uid: 1234 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 1 + - uid: 1235 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 1 + - uid: 1236 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 1 + - uid: 1237 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 1 + - uid: 1240 + components: + - type: Transform + pos: 13.5,-37.5 + parent: 1 + - uid: 1572 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 1 + - uid: 1573 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 1 + - uid: 1574 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 1 + - uid: 1578 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 1 + - uid: 1580 + components: + - type: Transform + pos: 15.5,-27.5 + parent: 1 + - uid: 1844 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 1 +- proto: CableMV + entities: + - uid: 1123 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 1 + - uid: 1245 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 1 + - uid: 1246 + components: + - type: Transform + pos: 12.5,-37.5 + parent: 1 + - uid: 1247 + components: + - type: Transform + pos: 12.5,-36.5 + parent: 1 + - uid: 1248 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 1 + - uid: 1249 + components: + - type: Transform + pos: 13.5,-35.5 + parent: 1 + - uid: 1250 + components: + - type: Transform + pos: 12.5,-33.5 + parent: 1 + - uid: 1251 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 1 + - uid: 1252 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 1 + - uid: 1253 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 1 + - uid: 1254 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 1 + - uid: 1255 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 1 + - uid: 1256 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 1 + - uid: 1257 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 1 + - uid: 1258 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 1 + - uid: 1260 + components: + - type: Transform + pos: 14.5,-26.5 + parent: 1 + - uid: 1261 + components: + - type: Transform + pos: 15.5,-26.5 + parent: 1 + - uid: 1262 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 1 + - uid: 1263 + components: + - type: Transform + pos: 16.5,-25.5 + parent: 1 + - uid: 1264 + components: + - type: Transform + pos: 15.5,-23.5 + parent: 1 + - uid: 1265 + components: + - type: Transform + pos: 16.5,-24.5 + parent: 1 + - uid: 1266 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 1 + - uid: 1267 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 1 + - uid: 1268 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 1 + - uid: 1269 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 1 + - uid: 1270 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 1 + - uid: 1271 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 1 + - uid: 1272 + components: + - type: Transform + pos: 16.5,-17.5 + parent: 1 + - uid: 1273 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 1 + - uid: 1274 + components: + - type: Transform + pos: 16.5,-16.5 + parent: 1 + - uid: 1275 + components: + - type: Transform + pos: 16.5,-15.5 + parent: 1 + - uid: 1276 + components: + - type: Transform + pos: 16.5,-14.5 + parent: 1 + - uid: 1278 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 1 + - uid: 1279 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1 + - uid: 1280 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 1 + - uid: 1281 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - uid: 1282 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - uid: 1283 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 1 + - uid: 1284 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 1 + - uid: 1285 + components: + - type: Transform + pos: 15.5,-8.5 + parent: 1 + - uid: 1288 + components: + - type: Transform + pos: 13.5,-7.5 + parent: 1 + - uid: 1289 + components: + - type: Transform + pos: 14.5,-8.5 + parent: 1 + - uid: 1290 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 1 + - uid: 1291 + components: + - type: Transform + pos: 12.5,-8.5 + parent: 1 + - uid: 1292 + components: + - type: Transform + pos: 11.5,-8.5 + parent: 1 + - uid: 1293 + components: + - type: Transform + pos: 10.5,-8.5 + parent: 1 + - uid: 1294 + components: + - type: Transform + pos: 9.5,-8.5 + parent: 1 + - uid: 1295 + components: + - type: Transform + pos: 8.5,-8.5 + parent: 1 + - uid: 1296 + components: + - type: Transform + pos: 7.5,-8.5 + parent: 1 + - uid: 1297 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 1 + - uid: 1298 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 + - uid: 1299 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 1 + - uid: 1300 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - uid: 1302 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 1303 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 1 + - uid: 1304 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 1 + - uid: 1305 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - uid: 1306 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 1 + - uid: 1307 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 1308 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 1309 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 + - uid: 1310 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 1311 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 1312 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 1313 + components: + - type: Transform + pos: -1.5,-8.5 + parent: 1 + - uid: 1314 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 1 + - uid: 1315 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 1316 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 1 + - uid: 1317 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - uid: 1318 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 1 + - uid: 1319 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1 + - uid: 1320 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 1 + - uid: 1321 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 1 + - uid: 1322 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 1 + - uid: 1323 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 1 + - uid: 1324 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 1 + - uid: 1325 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 1 + - uid: 1326 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 1 + - uid: 1327 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 1 + - uid: 1328 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 1 + - uid: 1329 + components: + - type: Transform + pos: -5.5,-17.5 + parent: 1 + - uid: 1330 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 1 + - uid: 1331 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 1 + - uid: 1332 + components: + - type: Transform + pos: -3.5,-18.5 + parent: 1 + - uid: 1333 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 1 + - uid: 1334 + components: + - type: Transform + pos: -2.5,-19.5 + parent: 1 + - uid: 1335 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 1 + - uid: 1336 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 1 + - uid: 1337 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 1 + - uid: 1338 + components: + - type: Transform + pos: -0.5,-20.5 + parent: 1 + - uid: 1339 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 1 + - uid: 1340 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 1 + - uid: 1341 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 1 + - uid: 1342 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 1 + - uid: 1343 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 1 + - uid: 1344 + components: + - type: Transform + pos: -2.5,-27.5 + parent: 1 + - uid: 1345 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 1 + - uid: 1346 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 1 + - uid: 1347 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 1 + - uid: 1348 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 1 + - uid: 1349 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 1 + - uid: 1350 + components: + - type: Transform + pos: -1.5,-31.5 + parent: 1 + - uid: 1351 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 1 + - uid: 1352 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 1 + - uid: 1353 + components: + - type: Transform + pos: -0.5,-33.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 1223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-34.5 + parent: 1 + - uid: 1241 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-35.5 + parent: 1 +- proto: CaptainSabreHilt + entities: + - uid: 389 + components: + - type: Transform + parent: 388 + - type: Physics + canCollide: False +- proto: CardBoxBlack + entities: + - uid: 579 + components: + - type: Transform + pos: -6.4139585,-8.497862 + parent: 1 +- proto: CardDeckBlack + entities: + - uid: 1702 + mapInit: true + paused: true + components: + - type: Transform + pos: -3.3624249,-11.167339 + parent: 1 + - type: CardStack + cards: + - 1703 + - 1704 + - 1705 + - 1706 + - 1707 + - 1708 + - 1709 + - 1710 + - 1711 + - 1712 + - 1713 + - 1714 + - 1715 + - 1716 + - 1717 + - 1718 + - 1719 + - 1720 + - 1721 + - 1722 + - 1723 + - 1724 + - 1725 + - 1726 + - 1727 + - 1728 + - 1729 + - 1754 + - 1753 + - 1752 + - 1751 + - 1750 + - 1749 + - 1748 + - 1747 + - 1746 + - 1745 + - 1744 + - 1743 + - 1742 + - 1741 + - 1740 + - 1739 + - 1738 + - 1737 + - 1736 + - 1735 + - 1734 + - 1733 + - 1732 + - 1731 + - 1730 + - type: ContainerContainer + containers: + cardstack-container: !type:Container + showEnts: False + occludes: True + ents: + - 1703 + - 1704 + - 1705 + - 1706 + - 1707 + - 1708 + - 1709 + - 1710 + - 1711 + - 1712 + - 1713 + - 1714 + - 1715 + - 1716 + - 1717 + - 1718 + - 1719 + - 1720 + - 1721 + - 1722 + - 1723 + - 1724 + - 1725 + - 1726 + - 1727 + - 1728 + - 1729 + - 1754 + - 1753 + - 1752 + - 1751 + - 1750 + - 1749 + - 1748 + - 1747 + - 1746 + - 1745 + - 1744 + - 1743 + - 1742 + - 1741 + - 1740 + - 1739 + - 1738 + - 1737 + - 1736 + - 1735 + - 1734 + - 1733 + - 1732 + - 1731 + - 1730 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Forensics + residues: [] + dnas: [] + fibers: [] + fingerprints: [] +- proto: CardSc10OfClubsBlack + entities: + - uid: 1712 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc10OfDiamondsBlack + entities: + - uid: 1725 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc10OfHeartsBlack + entities: + - uid: 1737 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc10OfSpadesBlack + entities: + - uid: 1750 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc2OfClubsBlack + entities: + - uid: 1704 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc2OfDiamondsBlack + entities: + - uid: 1717 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc2OfSpadesBlack + entities: + - uid: 1742 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc3OfClubsBlack + entities: + - uid: 1705 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc3OfDiamondsBlack + entities: + - uid: 1718 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc3OfHeartsBlack + entities: + - uid: 1730 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc3OfSpadesBlack + entities: + - uid: 1743 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc4OfClubsBlack + entities: + - uid: 1706 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc4OfDiamondsBlack + entities: + - uid: 1719 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc4OfHeartsBlack + entities: + - uid: 1731 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc4OfSpadesBlack + entities: + - uid: 1744 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc5OfClubsBlack + entities: + - uid: 1707 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc5OfDiamondsBlack + entities: + - uid: 1720 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc5OfHeartsBlack + entities: + - uid: 1732 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc5OfSpadesBlack + entities: + - uid: 1745 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc6OfClubsBlack + entities: + - uid: 1708 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc6OfDiamondsBlack + entities: + - uid: 1721 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc6OfHeartsBlack + entities: + - uid: 1733 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc6OfSpadesBlack + entities: + - uid: 1746 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc7OfClubsBlack + entities: + - uid: 1709 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc7OfDiamondsBlack + entities: + - uid: 1722 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc7OfHeartsBlack + entities: + - uid: 1734 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc7OfSpadesBlack + entities: + - uid: 1747 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc8OfClubsBlack + entities: + - uid: 1710 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc8OfDiamondsBlack + entities: + - uid: 1723 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc8OfHeartsBlack + entities: + - uid: 1735 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc8OfSpadesBlack + entities: + - uid: 1748 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc9OfClubsBlack + entities: + - uid: 1711 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc9OfDiamondsBlack + entities: + - uid: 1724 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc9OfHeartsBlack + entities: + - uid: 1736 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardSc9OfSpadesBlack + entities: + - uid: 1749 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardScAceOfClubsBlack + entities: + - uid: 1703 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardScAceOfDiamondsBlack + entities: + - uid: 1716 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardScAceOfHeartsBlack + entities: + - uid: 1729 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardScAceOfSpadesBlack + entities: + - uid: 1741 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardScJackOfClubsBlack + entities: + - uid: 1713 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardScJackOfDiamondsBlack + entities: + - uid: 1726 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardScJackOfHeartsBlack + entities: + - uid: 1738 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardScJackOfSpadesBlack + entities: + - uid: 1751 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardScJokerBlack + entities: + - uid: 1754 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardScKingOfClubsBlack + entities: + - uid: 1715 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardScKingOfDiamondsBlack + entities: + - uid: 1728 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardScKingOfHeartsBlack + entities: + - uid: 1740 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardScKingOfSpadesBlack + entities: + - uid: 1753 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardScQueenOfClubsBlack + entities: + - uid: 1714 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardScQueenOfDiamondsBlack + entities: + - uid: 1727 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardScQueenOfHeartsBlack + entities: + - uid: 1739 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CardScQueenOfSpadesBlack + entities: + - uid: 1752 + mapInit: true + paused: true + components: + - type: Transform + parent: 1702 + - type: UseDelay + delays: + default: + endTime: 0 + startTime: 0 + length: 0.5 + - type: EmitSoundOnCollide + nextSound: -3120.7968792 + - type: Physics + canCollide: False +- proto: CarpetBlack + entities: + - uid: 77 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 1 + - uid: 82 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 1 + - uid: 83 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 1 + - uid: 598 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 1 + - uid: 600 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 1 + - uid: 601 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 1 + - uid: 602 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 1 + - uid: 603 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 1 + - uid: 604 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 1 + - uid: 1699 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-12.5 + parent: 1 +- proto: CarpetBlue + entities: + - uid: 403 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 405 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 406 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 408 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 1 + - uid: 410 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 1 + - uid: 411 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 + - uid: 944 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 +- proto: CarpetPurple + entities: + - uid: 1682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 1 + - uid: 1683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 1 + - uid: 1686 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 131 + components: + - type: Transform + pos: 20.5,-19.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 20.5,-20.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 20.5,-21.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 1 + - uid: 261 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 1 + - uid: 427 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 1 + - uid: 430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-10.5 + parent: 1 + - uid: 502 + components: + - type: Transform + pos: 12.5,-42.5 + parent: 1 + - uid: 557 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-12.5 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 1 + - uid: 576 + components: + - type: Transform + pos: 18.5,-5.5 + parent: 1 + - uid: 704 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 1 + - uid: 738 + components: + - type: Transform + pos: 21.5,-15.5 + parent: 1 + - uid: 753 + components: + - type: Transform + pos: 21.5,-14.5 + parent: 1 + - uid: 760 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 1 + - uid: 994 + components: + - type: Transform + pos: 18.5,-18.5 + parent: 1 + - uid: 995 + components: + - type: Transform + pos: 18.5,-19.5 + parent: 1 + - uid: 996 + components: + - type: Transform + pos: 18.5,-20.5 + parent: 1 + - uid: 997 + components: + - type: Transform + pos: 18.5,-21.5 + parent: 1 + - uid: 999 + components: + - type: Transform + pos: 17.5,-18.5 + parent: 1 + - uid: 1000 + components: + - type: Transform + pos: 17.5,-19.5 + parent: 1 + - uid: 1001 + components: + - type: Transform + pos: 17.5,-20.5 + parent: 1 + - uid: 1002 + components: + - type: Transform + pos: 17.5,-21.5 + parent: 1 + - uid: 1045 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 1 + - uid: 1085 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-11.5 + parent: 1 + - uid: 1086 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 1 + - uid: 1097 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 1 + - uid: 1130 + components: + - type: Transform + pos: 21.5,-17.5 + parent: 1 + - uid: 1136 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 1 + - uid: 1599 + components: + - type: Transform + pos: 14.5,-5.5 + parent: 1 + - uid: 1600 + components: + - type: Transform + pos: 14.5,-2.5 + parent: 1 + - uid: 1601 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 1 + - uid: 1603 + components: + - type: Transform + pos: 14.5,-3.5 + parent: 1 + - uid: 1663 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 1 + - uid: 1772 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 1 + - uid: 1773 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 1 + - uid: 1774 + components: + - type: Transform + pos: -1.5,-35.5 + parent: 1 + - uid: 1775 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 1 + - uid: 1776 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 1 + - uid: 1777 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 1 + - uid: 1993 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 1 + - uid: 1994 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 1 + - uid: 1995 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 1 + - uid: 1996 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 1 +- proto: CatwalkSteelTile + entities: + - uid: 212 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 1 +- proto: CatwalkWhiteTile + entities: + - uid: 206 + components: + - type: Transform + pos: 11.5,-21.5 + parent: 1 + - uid: 440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-16.5 + parent: 1 + - uid: 443 + components: + - type: Transform + pos: 10.5,-21.5 + parent: 1 + - uid: 548 + components: + - type: Transform + pos: 1.5,-23.5 + parent: 1 + - uid: 572 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 1 + - uid: 590 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 1 + - uid: 717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-16.5 + parent: 1 + - uid: 740 + components: + - type: Transform + pos: 11.5,-23.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: 10.5,-23.5 + parent: 1 + - uid: 761 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-16.5 + parent: 1 + - uid: 860 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-16.5 + parent: 1 + - uid: 1561 + components: + - type: Transform + pos: 0.5,-23.5 + parent: 1 + - uid: 1786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-17.5 + parent: 1 + - uid: 1787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-17.5 + parent: 1 + - uid: 1788 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-17.5 + parent: 1 + - uid: 1833 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-17.5 + parent: 1 +- proto: ChairFolding + entities: + - uid: 747 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5667238,-35.446198 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 335 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 1 + - uid: 336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 1 + - uid: 337 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-4.5 + parent: 1 + - uid: 338 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 1 + - uid: 339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 1 +- proto: ChessBoard + entities: + - uid: 582 + components: + - type: Transform + pos: -5.574115,-8.419737 + parent: 1 +- proto: CigarCase + entities: + - uid: 86 + components: + - type: Transform + parent: 496 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CigaretteSpent + entities: + - uid: 1678 + components: + - type: Transform + pos: 3.6052608,-7.7091618 + parent: 1 + - uid: 1689 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.7094276,-7.6779118 + parent: 1 +- proto: CircuitImprinter + entities: + - uid: 632 + components: + - type: Transform + pos: -1.5,-16.5 + parent: 1 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 332 + components: + - type: Transform + pos: 13.5,-24.5 + parent: 1 +- proto: ClothingBeltChiefEngineerFilledBasic + entities: + - uid: 1069 + components: + - type: Transform + parent: 198 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingBeltWhiteSheath + entities: + - uid: 388 + components: + - type: Transform + parent: 387 + - type: Physics + canCollide: False + - type: ContainerContainer + containers: + item: !type:ContainerSlot + showEnts: False + occludes: True + ent: 389 +- proto: ClothingEyesGlassesChemical + entities: + - uid: 257 + components: + - type: Transform + parent: 211 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 395 + components: + - type: Transform + parent: 387 + - type: Physics + canCollide: False +- proto: ClothingHandsGlovesCaptainWhite + entities: + - uid: 392 + components: + - type: Transform + parent: 387 + - type: Physics + canCollide: False +- proto: ClothingHeadHatBeretCaptainWhite + entities: + - uid: 391 + components: + - type: Transform + parent: 387 + - type: Physics + canCollide: False +- proto: ClothingHeadHatBeretMedic + entities: + - uid: 1012 + components: + - type: Transform + pos: 12.4994135,-18.151638 + parent: 1 +- proto: ClothingHeadHatBeretRND + entities: + - uid: 256 + components: + - type: Transform + parent: 211 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatCapcapWhite + entities: + - uid: 390 + components: + - type: Transform + parent: 387 + - type: Physics + canCollide: False +- proto: ClothingHeadHatTophat + entities: + - uid: 87 + components: + - type: Transform + parent: 496 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskBreath + entities: + - uid: 1555 + components: + - type: Transform + parent: 1073 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskBreathMedical + entities: + - uid: 998 + components: + - type: Transform + pos: 12.499257,-18.652777 + parent: 1 +- proto: ClothingMaskGasCaptain + entities: + - uid: 386 + components: + - type: Transform + parent: 378 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckCloakRd + entities: + - uid: 259 + components: + - type: Transform + parent: 211 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckCloakRoyalCaptain + entities: + - uid: 398 + components: + - type: Transform + parent: 387 + - type: Physics + canCollide: False +- proto: ClothingNeckMantleRD + entities: + - uid: 216 + components: + - type: Transform + parent: 211 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckWhiteMantleCaptain + entities: + - uid: 397 + components: + - type: Transform + parent: 387 + - type: Physics + canCollide: False +- proto: ClothingOuterApronBar + entities: + - uid: 88 + components: + - type: Transform + parent: 496 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterArmorCaptainCarapace + entities: + - uid: 385 + components: + - type: Transform + parent: 378 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitCap + entities: + - uid: 383 + components: + - type: Transform + parent: 378 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitEngineeringWhite + entities: + - uid: 1992 + components: + - type: Transform + parent: 1073 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterWinterRD + entities: + - uid: 258 + components: + - type: Transform + parent: 211 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsCowboyWhite + entities: + - uid: 396 + components: + - type: Transform + parent: 387 + - type: Physics + canCollide: False +- proto: ClothingShoesBootsMagSci + entities: + - uid: 382 + components: + - type: Transform + parent: 378 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1579 + components: + - type: Transform + parent: 1073 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsWinterRD + entities: + - uid: 260 + components: + - type: Transform + parent: 211 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtResearchDirector + entities: + - uid: 304 + components: + - type: Transform + parent: 211 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtWhiteCaptain + entities: + - uid: 394 + components: + - type: Transform + parent: 387 + - type: Physics + canCollide: False +- proto: ClothingUniformJumpsuitResearchDirector + entities: + - uid: 399 + components: + - type: Transform + parent: 211 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitWhiteCaptain + entities: + - uid: 393 + components: + - type: Transform + parent: 387 + - type: Physics + canCollide: False +- proto: ComfyChair + entities: + - uid: 883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 1 + - uid: 896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 1 +- proto: ComputerAnalysisConsole + entities: + - uid: 653 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-18.5 + parent: 1 + - type: AnalysisConsole + analyzerEntity: 659 + - type: DeviceLinkSource + linkedPorts: + 659: + - - ArtifactAnalyzerSender + - ArtifactAnalyzerReceiver +- proto: ComputerAtmosMonitoring + entities: + - uid: 745 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-35.5 + parent: 1 +- proto: ComputerGunneryConsole + entities: + - uid: 445 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 1 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-18.5 + parent: 1 +- proto: ComputerRoboticsControl + entities: + - uid: 714 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-31.5 + parent: 1 +- proto: ComputerTabletop + entities: + - uid: 759 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-11.5 + parent: 1 +- proto: ComputerTabletopPowerMonitoring + entities: + - uid: 327 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 1 +- proto: ComputerTabletopResearchAndDevelopment + entities: + - uid: 326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 1 +- proto: ComputerTabletopShuttle + entities: + - uid: 329 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 +- proto: ComputerTabletopStationRecords + entities: + - uid: 324 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 +- proto: ComputerTelevision + entities: + - uid: 1039 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-11.5 + parent: 1 +- proto: ComputerWallmountWithdrawBankATM + entities: + - uid: 563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + - uid: 1761 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-11.5 + parent: 1 +- proto: CrateEngineeringCableBulk + entities: + - uid: 1117 + components: + - type: Transform + pos: 14.5,-36.5 + parent: 1 +- proto: CrateFreezer + entities: + - uid: 518 + components: + - type: Transform + pos: 10.5,-12.5 + parent: 1 +- proto: CrateHydroponicsSeeds + entities: + - uid: 517 + components: + - type: Transform + pos: 12.5,-11.5 + parent: 1 +- proto: CrateHydroponicsTools + entities: + - uid: 516 + components: + - type: Transform + pos: 12.5,-10.5 + parent: 1 +- proto: CurtainsWhiteOpen + entities: + - uid: 402 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 +- proto: DefaultStationBeaconAME + entities: + - uid: 1137 + components: + - type: Transform + pos: 15.5,-29.5 + parent: 1 +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 1131 + components: + - type: Transform + pos: -5.5,-25.5 + parent: 1 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 1141 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 1 +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 1134 + components: + - type: Transform + pos: -0.5,-36.5 + parent: 1 +- proto: DefaultStationBeaconBar + entities: + - uid: 495 + components: + - type: Transform + pos: 0.5,-11.5 + parent: 1 +- proto: DefaultStationBeaconBridge + entities: + - uid: 958 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 1084 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 +- proto: DefaultStationBeaconEngineering + entities: + - uid: 1138 + components: + - type: Transform + pos: 15.5,-25.5 + parent: 1 +- proto: DefaultStationBeaconFrontierShops + entities: + - uid: 81 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - uid: 943 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 +- proto: DefaultStationBeaconGravGen + entities: + - uid: 428 + components: + - type: Transform + pos: 12.5,-35.5 + parent: 1 +- proto: DefaultStationBeaconKitchen + entities: + - uid: 539 + components: + - type: Transform + pos: 9.5,-11.5 + parent: 1 +- proto: DefaultStationBeaconMedbay + entities: + - uid: 1139 + components: + - type: Transform + pos: 13.5,-16.5 + parent: 1 +- proto: DefaultStationBeaconRobotics + entities: + - uid: 979 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 1 +- proto: DefaultStationBeaconSalvage + entities: + - uid: 1140 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 1 +- proto: DefaultStationBeaconScience + entities: + - uid: 957 + components: + - type: Transform + pos: -2.5,-16.5 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 1099 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-19.5 + parent: 1 + - uid: 1546 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-16.5 + parent: 1 + - uid: 1547 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 +- proto: DisposalUnit + entities: + - uid: 570 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 1044 + components: + - type: Transform + pos: 19.5,-22.5 + parent: 1 +- proto: DoubleEmergencyNitrogenTankFilled + entities: + - uid: 380 + components: + - type: Transform + parent: 378 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 379 + components: + - type: Transform + parent: 378 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Dresser + entities: + - uid: 387 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 1 + - type: Storage + storedItems: + 388: + position: 4,0 + _rotation: South + 390: + position: 0,0 + _rotation: East + 391: + position: 0,1 + _rotation: East + 392: + position: 0,2 + _rotation: East + 393: + position: 2,0 + _rotation: South + 394: + position: 2,2 + _rotation: South + 395: + position: 0,3 + _rotation: East + 396: + position: 4,2 + _rotation: South + 397: + position: 6,0 + _rotation: South + 398: + position: 6,2 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 390 + - 391 + - 392 + - 393 + - 394 + - 395 + - 388 + - 396 + - 397 + - 398 +- proto: DrinkBeerCan + entities: + - uid: 165 + components: + - type: Transform + pos: -3.441391,-10.324228 + parent: 1 + - uid: 1679 + components: + - type: Transform + pos: 3.2510943,-7.292495 + parent: 1 + - uid: 1688 + components: + - type: Transform + pos: 3.4490108,-7.2195783 + parent: 1 + - uid: 1700 + components: + - type: Transform + pos: -4.082016,-11.246103 + parent: 1 +- proto: DrinkCoffee + entities: + - uid: 181 + components: + - type: Transform + pos: 15.455784,-10.474934 + parent: 1 + - uid: 929 + components: + - type: Transform + pos: 15.612034,-10.662434 + parent: 1 + - uid: 1762 + components: + - type: Transform + pos: 15.403701,-10.714518 + parent: 1 +- proto: DrinkMugBlack + entities: + - uid: 362 + components: + - type: Transform + pos: 5.3319016,-5.3635764 + parent: 1 +- proto: DrinkMugHeart + entities: + - uid: 363 + components: + - type: Transform + pos: 5.976433,-5.402639 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 195 + components: + - type: Transform + pos: 21.5,-10.5 + parent: 1 + - uid: 583 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - uid: 584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-12.5 + parent: 1 + - uid: 585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 1 + - uid: 587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-3.5 + parent: 1 + - uid: 588 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 1 + - uid: 610 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1 + - uid: 685 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 1 + - uid: 686 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-19.5 + parent: 1 + - uid: 725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-28.5 + parent: 1 + - uid: 726 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-28.5 + parent: 1 + - uid: 894 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-12.5 + parent: 1 + - uid: 895 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-7.5 + parent: 1 + - uid: 1538 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-35.5 + parent: 1 + - uid: 1549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-16.5 + parent: 1 + - uid: 1550 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-16.5 + parent: 1 + - uid: 1551 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 1 + - uid: 1552 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-22.5 + parent: 1 + - uid: 1553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 1 + - uid: 1554 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 1 + - uid: 1556 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 1 + - uid: 2001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-25.5 + parent: 1 +- proto: EmergencyMedipen + entities: + - uid: 1020 + components: + - type: Transform + pos: 14.296132,-17.637152 + parent: 1 +- proto: EngineeringTechFab + entities: + - uid: 171 + components: + - type: Transform + pos: 18.5,-27.5 + parent: 1 +- proto: ExosuitFabricator + entities: + - uid: 698 + components: + - type: Transform + pos: -4.5,-29.5 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 122 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 1 + - uid: 417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 1 + - uid: 1559 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-23.5 + parent: 1 + - uid: 1560 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-27.5 + parent: 1 + - uid: 1562 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-33.5 + parent: 1 + - uid: 1563 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 1 + - uid: 1564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 1 + - uid: 1565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 1 + - uid: 1566 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 1 +- proto: FaxMachineShip + entities: + - uid: 372 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 +- proto: FireAxeCabinetFilledCommand + entities: + - uid: 416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-6.5 + parent: 1 +- proto: FireExtinguisherMini + entities: + - uid: 459 + components: + - type: Transform + pos: -6.7064543,-14.946457 + parent: 1 +- proto: FirelockEdge + entities: + - uid: 230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1 + - uid: 231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + - uid: 233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 1 + - uid: 235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 1 + - uid: 240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 1 + - uid: 244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 1 +- proto: FirelockGlass + entities: + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-23.5 + parent: 1 + - uid: 442 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 1 + - uid: 444 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-5.5 + parent: 1 + - uid: 446 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 1 + - uid: 449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 1 + - uid: 450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 1 + - uid: 451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 1 + - uid: 540 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 1 + - uid: 541 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 542 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 1 + - uid: 549 + components: + - type: Transform + pos: 13.5,-8.5 + parent: 1 + - uid: 550 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 1 + - uid: 693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 1 + - uid: 694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-19.5 + parent: 1 + - uid: 733 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 1 + - uid: 1216 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-32.5 + parent: 1 + - uid: 1217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-13.5 + parent: 1 + - uid: 1218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-19.5 + parent: 1 + - uid: 1219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-14.5 + parent: 1 + - uid: 1222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-15.5 + parent: 1 +- proto: FlippoLighter + entities: + - uid: 85 + components: + - type: Transform + parent: 496 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Fork + entities: + - uid: 1681 + components: + - type: Transform + pos: 6.3755045,-11.530533 + parent: 1 +- proto: FuelBananium + entities: + - uid: 2000 + components: + - type: Transform + parent: 1999 + - type: Physics + canCollide: False +- proto: FuelDispenser + entities: + - uid: 1106 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-26.5 + parent: 1 +- proto: GasMixerOn + entities: + - uid: 180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-35.5 + parent: 1 +- proto: GasPassiveVent + entities: + - uid: 498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-22.5 + parent: 1 + - uid: 636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-20.5 + parent: 1 +- proto: GasPipeBend + entities: + - uid: 215 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-36.5 + parent: 1 + - uid: 780 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-27.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 787 + components: + - type: Transform + pos: -3.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 811 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 815 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 817 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 837 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 839 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 853 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 854 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 934 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 935 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 939 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 950 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1186 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1211 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-36.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1639 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-36.5 + parent: 1 +- proto: GasPipeBendAlt2 + entities: + - uid: 781 + components: + - type: Transform + pos: -1.5,-27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 785 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 786 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 810 + components: + - type: Transform + pos: -2.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 812 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 814 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 816 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 836 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 851 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 933 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 936 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 949 + components: + - type: Transform + pos: 7.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1157 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1187 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1210 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 892 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 921 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeFourwayAlt2 + entities: + - uid: 875 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 898 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 182 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 228 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-35.5 + parent: 1 + - uid: 631 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 1 + - uid: 641 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-20.5 + parent: 1 + - uid: 649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-20.5 + parent: 1 + - uid: 650 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-22.5 + parent: 1 + - uid: 769 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 770 + components: + - type: Transform + pos: -1.5,-31.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 774 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 775 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 776 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 788 + components: + - type: Transform + pos: -3.5,-26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 791 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 792 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 796 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 798 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 800 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 802 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 804 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 819 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 820 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 821 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 822 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 823 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 830 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 831 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 834 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 841 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 847 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 870 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 871 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 872 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 873 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 891 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 914 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 915 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 926 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 947 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 948 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 953 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 954 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 959 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 961 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 962 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 963 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 965 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1075 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1076 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1125 + components: + - type: Transform + pos: 16.5,-22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1147 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1148 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1149 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1150 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1151 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1154 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1173 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1174 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1199 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1200 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1201 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1202 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1203 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1204 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1205 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1206 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1207 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1212 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-35.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraightAlt2 + entities: + - uid: 564 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 764 + components: + - type: Transform + pos: -1.5,-35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 767 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 768 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 771 + components: + - type: Transform + pos: -1.5,-31.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 777 + components: + - type: Transform + pos: -1.5,-30.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 778 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 779 + components: + - type: Transform + pos: -1.5,-28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 793 + components: + - type: Transform + pos: -2.5,-26.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 794 + components: + - type: Transform + pos: -2.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 795 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 797 + components: + - type: Transform + pos: -2.5,-23.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 799 + components: + - type: Transform + pos: -2.5,-22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 801 + components: + - type: Transform + pos: -2.5,-21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 803 + components: + - type: Transform + pos: -2.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 818 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 824 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 825 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 826 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 827 + components: + - type: Transform + pos: -5.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 829 + components: + - type: Transform + pos: -5.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 832 + components: + - type: Transform + pos: -5.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 833 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 840 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 849 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 859 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 877 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 878 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 879 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 880 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 881 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 888 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 890 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 916 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 917 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 924 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 925 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 937 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 945 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 946 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 969 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 971 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 972 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1142 + components: + - type: Transform + pos: 16.5,-9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1143 + components: + - type: Transform + pos: 16.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1144 + components: + - type: Transform + pos: 16.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1145 + components: + - type: Transform + pos: 16.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1146 + components: + - type: Transform + pos: 16.5,-13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1169 + components: + - type: Transform + pos: 16.5,-18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1170 + components: + - type: Transform + pos: 16.5,-19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1171 + components: + - type: Transform + pos: 16.5,-20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1172 + components: + - type: Transform + pos: 16.5,-21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1179 + components: + - type: Transform + pos: 16.5,-23.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1188 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1192 + components: + - type: Transform + pos: 13.5,-26.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1193 + components: + - type: Transform + pos: 13.5,-27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1194 + components: + - type: Transform + pos: 13.5,-28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1195 + components: + - type: Transform + pos: 13.5,-29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1196 + components: + - type: Transform + pos: 13.5,-30.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1197 + components: + - type: Transform + pos: 13.5,-32.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1198 + components: + - type: Transform + pos: 13.5,-31.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1208 + components: + - type: Transform + pos: 13.5,-33.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1209 + components: + - type: Transform + pos: 13.5,-34.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 765 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 782 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-27.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 806 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 843 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 861 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 928 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunctionAlt2 + entities: + - uid: 766 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-34.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 783 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 805 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 842 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 866 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 927 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1081 + components: + - type: Transform + pos: 16.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1153 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 179 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 1 + - uid: 615 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-20.5 + parent: 1 + - uid: 644 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 1 + - uid: 1651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-35.5 + parent: 1 +- proto: GasPressurePump + entities: + - uid: 645 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-20.5 + parent: 1 + - uid: 651 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-22.5 + parent: 1 +- proto: GasPressurePumpAlt2 + entities: + - uid: 183 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 1 +- proto: GasPressurePumpOn + entities: + - uid: 754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-34.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 637 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 413 + - uid: 773 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 809 + - uid: 790 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 729 + - uid: 808 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 688 + - uid: 845 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 885 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 554 + - uid: 901 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 554 + - uid: 911 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 554 + - uid: 919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 554 + - uid: 941 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 413 + - uid: 1080 + components: + - type: Transform + pos: 16.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 1052 + - uid: 1158 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 1051 + - uid: 1175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 1050 + - uid: 1183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - type: DeviceNetwork + deviceLists: + - 1112 + - uid: 1213 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-36.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 772 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-34.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 809 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - uid: 789 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-26.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 729 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - uid: 807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 688 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - uid: 844 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - type: AtmosPipeLayers + pipeLayer: Tertiary + - uid: 886 + components: + - type: Transform + pos: 6.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 554 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - uid: 902 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 554 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - uid: 910 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 554 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - uid: 920 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 554 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - uid: 942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 413 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - uid: 956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 413 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - uid: 1133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 1052 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - uid: 1159 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 1051 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - uid: 1176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 1050 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - uid: 1182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - type: DeviceNetwork + deviceLists: + - 1112 + - type: AtmosPipeLayers + pipeLayer: Tertiary +- proto: Gauze + entities: + - uid: 1021 + components: + - type: Transform + pos: 12.780507,-18.465277 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 175 + components: + - type: Transform + pos: 15.5,-24.5 + parent: 1 +- proto: Grille + entities: + - uid: 61 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 1 + - uid: 62 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 1 + - uid: 204 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 1 + - uid: 262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 1 + - uid: 265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 1 + - uid: 266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 288 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 1 + - uid: 290 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 1 + - uid: 291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 1 + - uid: 292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 1 + - uid: 293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 1 + - uid: 294 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-0.5 + parent: 1 + - uid: 295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1 + - uid: 528 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - uid: 529 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - uid: 530 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 1 + - uid: 531 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-0.5 + parent: 1 + - uid: 620 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 1 + - uid: 627 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-20.5 + parent: 1 + - uid: 639 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-19.5 + parent: 1 + - uid: 646 + components: + - type: Transform + pos: -7.5,-19.5 + parent: 1 + - uid: 654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-19.5 + parent: 1 + - uid: 660 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 239 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1 + - uid: 242 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + - uid: 756 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 +- proto: GunneryServerMedium + entities: + - uid: 169 + components: + - type: Transform + pos: 13.5,-37.5 + parent: 1 + - type: Battery + startingCharge: 0 + - type: ApcPowerReceiver + powerLoad: 10 +- proto: GunSafeShuttleCaptain + entities: + - uid: 378 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + 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: + - 386 + - 379 + - 381 + - 382 + - 383 + - 384 + - 385 + - 380 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: Gyroscope + entities: + - uid: 251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-13.5 + parent: 1 + - uid: 1089 + components: + - type: Transform + pos: -7.5,-15.5 + parent: 1 + - uid: 1090 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 1 + - uid: 1104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-19.5 + parent: 1 + - uid: 1126 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-19.5 + parent: 1 +- proto: HospitalCurtains + entities: + - uid: 1023 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-14.5 + parent: 1 + - uid: 1024 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 1 +- proto: HospitalCurtainsOpen + entities: + - uid: 1026 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-14.5 + parent: 1 +- proto: hydroponicsTray + entities: + - uid: 515 + components: + - type: Transform + pos: 12.5,-12.5 + parent: 1 +- proto: ImpCoffeeMachine + entities: + - uid: 361 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 1 +- proto: JetpackMiniFilled + entities: + - uid: 381 + components: + - type: Transform + parent: 378 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1114 + components: + - type: Transform + parent: 1073 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: KitchenElectricRange + entities: + - uid: 514 + components: + - type: Transform + pos: 10.5,-10.5 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 525 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 523 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 1 +- proto: KoboldCubeWrapped + entities: + - uid: 668 + components: + - type: Transform + pos: -6.409255,-15.158724 + parent: 1 +- proto: LampGold + entities: + - uid: 1701 + components: + - type: Transform + pos: -3.628891,-10.621103 + parent: 1 +- proto: LargeBeaker + entities: + - uid: 884 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 1 +- proto: LockerBoozeFilled + entities: + - uid: 496 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 85 + - 86 + - 87 + - 88 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerResearchDirectorFilledHardsuit + entities: + - uid: 211 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + 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: + - 256 + - 399 + - 304 + - 260 + - 259 + - 258 + - 257 + - 216 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 1009 + components: + - type: Transform + pos: 14.5,-20.5 + parent: 1 + - uid: 1011 + components: + - type: Transform + pos: 15.5,-20.5 + parent: 1 +- proto: LockerWallEVAColorContractorFilled + entities: + - uid: 593 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: 15.5,-5.5 + parent: 1 +- proto: LockerWallEVAColorMedicalFilled + entities: + - uid: 1014 + components: + - type: Transform + pos: 10.5,-16.5 + parent: 1 +- proto: LockerWallMaterialsFuelBananiumFilled + entities: + - uid: 1999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-32.5 + parent: 1 + - type: Storage + storedItems: + 2000: + position: 1,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 2000 +- proto: LuxuryPen + entities: + - uid: 377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.20736694,-5.602392 + parent: 1 +- proto: MachineAnomalyGenerator + entities: + - uid: 697 + components: + - type: Transform + pos: -5.5,-25.5 + parent: 1 +- proto: MachineAnomalyVessel + entities: + - uid: 701 + components: + - type: Transform + pos: -1.5,-25.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 1 +- proto: MachineAPE + entities: + - uid: 699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-27.5 + parent: 1 + - uid: 700 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-27.5 + parent: 1 +- proto: MachineArtifactAnalyzer + entities: + - uid: 659 + components: + - type: Transform + pos: -6.5,-21.5 + parent: 1 +- proto: MachineFlatpacker + entities: + - uid: 669 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 1 +- proto: MachineMaterialSilo + entities: + - uid: 680 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1 +- proto: MaterialReclaimer + entities: + - uid: 1038 + components: + - type: Transform + pos: 17.5,-16.5 + parent: 1 +- proto: MedicalBed + entities: + - uid: 1010 + components: + - type: Transform + pos: 12.5,-14.5 + parent: 1 +- proto: MedicalTechFabCircuitboard + entities: + - uid: 1019 + components: + - type: Transform + pos: 14.749257,-17.621527 + parent: 1 +- proto: MedkitCombat + entities: + - uid: 889 + components: + - type: Transform + pos: 16.57523,-6.4145837 + parent: 1 +- proto: MedkitFilled + entities: + - uid: 993 + components: + - type: Transform + pos: 14.487103,-17.424875 + parent: 1 +- proto: MiningDrill + entities: + - uid: 1042 + components: + - type: Transform + pos: 13.458969,-22.379147 + parent: 1 + - uid: 1043 + components: + - type: Transform + pos: 13.458969,-22.57446 + parent: 1 +- proto: MonkeyCubeWrapped + entities: + - uid: 667 + components: + - type: Transform + pos: -6.3506613,-14.885286 + parent: 1 +- proto: Morgue + entities: + - uid: 1008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-14.5 + parent: 1 + - uid: 1022 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 1 +- proto: NFAshtray + entities: + - uid: 1684 + components: + - type: Transform + pos: 3.3240108,-7.8341618 + parent: 1 +- proto: NFHolopadShip + entities: + - uid: 418 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 1 +- proto: NFTankO2N2EqualFilled + entities: + - uid: 1581 + components: + - type: Transform + parent: 1073 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: NitrogenCanister + entities: + - uid: 114 + components: + - type: Transform + anchored: True + pos: -0.5,-34.5 + parent: 1 + - type: Physics + bodyType: Static + - uid: 457 + components: + - type: Transform + pos: 0.5,-15.5 + parent: 1 +- proto: NodeScanner + entities: + - uid: 665 + components: + - type: Transform + pos: -6.520298,-14.361595 + parent: 1 +- proto: NSCFlag + entities: + - uid: 1808 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-32.5 + parent: 1 + - uid: 1834 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 1 + - uid: 1835 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-15.5 + parent: 1 + - uid: 1836 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-23.5 + parent: 1 + - uid: 1837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 1 + - uid: 1838 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-9.5 + parent: 1 + - uid: 1840 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 +- proto: OblivionMothershipComputer + entities: + - uid: 328 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 +- proto: OreProcessor + entities: + - uid: 1033 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 1 +- proto: OxygenCanister + entities: + - uid: 482 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 1 + - uid: 1582 + components: + - type: Transform + anchored: True + pos: -0.5,-35.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: Paper + entities: + - uid: 374 + components: + - type: Transform + pos: 0.5784608,-5.270361 + parent: 1 + - uid: 375 + components: + - type: Transform + pos: 0.75424206,-5.289892 + parent: 1 + - uid: 1687 + components: + - type: Transform + pos: 5.9016447,-5.268046 + parent: 1 + - type: Paper + stampState: paper_stamp-warden + stampedBy: + - reapply: False + stampType: RubberStamp + stampedColor: '#5E1010FF' + stampedName: Vitezstvi + content: >- + Фух, наконец то достроили.... Начальник сказал что в место нас дорабатывать придет другая бригада, странно, почему они в военной форме? + + + + [italic]Часть страницы запачкана кровью, больше ничего нельзя распознать[italic] + - type: Forensics + residues: [] + dnas: [] + fibers: [] + fingerprints: [] +- proto: Pickaxe + entities: + - uid: 1028 + components: + - type: Transform + parent: 763 + - type: Physics + canCollide: False + - uid: 1029 + components: + - type: Transform + parent: 763 + - type: Physics + canCollide: False +- proto: PlushieAtmosian + entities: + - uid: 746 + components: + - type: Transform + pos: -1.5081301,-35.46573 + parent: 1 +- proto: PlushieCatWhite + entities: + - uid: 159 + components: + - type: MetaData + desc: Имеет ошейник и кулон с надписью "ЛевыйНосок" + - type: Transform + pos: 12.49696,-16.301153 + parent: 1 +- proto: PortableGeneratorDKJrShuttle + entities: + - uid: 253 + components: + - type: Transform + pos: 16.5,-31.5 + parent: 1 + - uid: 1067 + components: + - type: Transform + pos: 16.5,-28.5 + parent: 1 + - uid: 1072 + components: + - type: Transform + pos: 16.5,-29.5 + parent: 1 + - uid: 1101 + components: + - type: Transform + pos: 16.5,-30.5 + parent: 1 +- proto: PortableScrubber + entities: + - uid: 743 + components: + - type: Transform + pos: -2.5,-36.5 + parent: 1 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 1781 + components: + - type: Transform + pos: -1.5,-38.5 + parent: 1 +- proto: PosterContrabandAyaya + entities: + - uid: 666 + components: + - type: Transform + pos: -0.5,-21.5 + parent: 1 +- proto: PosterContrabandMissingSpacepen + entities: + - uid: 1017 + components: + - type: Transform + pos: 11.5,-13.5 + parent: 1 +- proto: PottedPlantRandom + entities: + - uid: 357 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 567 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: 11.5,-7.5 + parent: 1 + - uid: 589 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 592 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 1 + - uid: 708 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 1 + - uid: 893 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 1 + - uid: 1697 + components: + - type: Transform + pos: -7.5,-9.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 365 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 1 + - uid: 366 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 1 + - uid: 367 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-4.5 + parent: 1 + - uid: 368 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 1 + - uid: 370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 1 + - uid: 532 + components: + - type: Transform + pos: 8.5,-7.5 + parent: 1 + - uid: 533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 1 + - uid: 534 + components: + - type: Transform + pos: 7.5,-10.5 + parent: 1 + - uid: 535 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 1 + - uid: 536 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-12.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 1 + - uid: 596 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 1 + - uid: 681 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 1 + - uid: 682 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-21.5 + parent: 1 + - uid: 683 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-17.5 + parent: 1 + - uid: 684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 1 + - uid: 721 + components: + - type: Transform + pos: -4.5,-24.5 + parent: 1 + - uid: 724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-28.5 + parent: 1 + - uid: 727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-30.5 + parent: 1 + - uid: 1354 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 1 +- proto: PoweredlightLED + entities: + - uid: 431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-23.5 + parent: 1 + - uid: 483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-12.5 + parent: 1 + - uid: 547 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-32.5 + parent: 1 + - uid: 571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-21.5 + parent: 1 + - uid: 629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-25.5 + parent: 1 + - uid: 900 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 1 + - uid: 980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-12.5 + parent: 1 + - uid: 1053 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-15.5 + parent: 1 + - uid: 1054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-22.5 + parent: 1 + - uid: 1055 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-21.5 + parent: 1 + - uid: 1056 + components: + - type: Transform + pos: 18.5,-16.5 + parent: 1 + - uid: 1077 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-37.5 + parent: 1 + - uid: 1129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-30.5 + parent: 1 + - uid: 1132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-26.5 + parent: 1 + - uid: 1527 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 1 + - uid: 1528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 1 + - uid: 1532 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-17.5 + parent: 1 + - uid: 1533 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-17.5 + parent: 1 + - uid: 1534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 1 + - uid: 1537 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 1 + - uid: 1997 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-31.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 897 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 1 +- proto: Protolathe + entities: + - uid: 658 + components: + - type: Transform + pos: -1.5,-15.5 + parent: 1 +- proto: Rack + entities: + - uid: 713 + components: + - type: Transform + pos: -4.5,-27.5 + parent: 1 + - uid: 846 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-22.5 + parent: 1 +- proto: RagItem + entities: + - uid: 364 + components: + - type: Transform + pos: 5.7225266,-5.3831077 + parent: 1 +- proto: Railing + entities: + - uid: 419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-1.5 + parent: 1 + - uid: 420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-1.5 + parent: 1 + - uid: 421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 1 + - uid: 422 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-1.5 + parent: 1 + - uid: 423 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 1 + - uid: 424 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 1 + - uid: 426 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 1 + - uid: 723 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-24.5 + parent: 1 +- proto: RailingCornerSmall + entities: + - uid: 425 + components: + - type: Transform + pos: 10.5,-1.5 + parent: 1 +- proto: RandomDrinkGlass + entities: + - uid: 1674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + - uid: 1692 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1 +- proto: RandomPosterAny + entities: + - uid: 555 + components: + - type: Transform + pos: 1.5,-13.5 + parent: 1 + - uid: 556 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 730 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 1 + - uid: 731 + components: + - type: Transform + pos: -4.5,-23.5 + parent: 1 + - uid: 734 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 1 + - uid: 735 + components: + - type: Transform + pos: -8.5,-18.5 + parent: 1 + - uid: 1105 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 1 + - uid: 1107 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 1 + - uid: 1108 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 1 + - uid: 1109 + components: + - type: Transform + pos: 17.5,-15.5 + parent: 1 + - uid: 1110 + components: + - type: Transform + pos: 13.5,-12.5 + parent: 1 +- proto: RandomPosterLegit + entities: + - uid: 359 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 414 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: 13.5,-4.5 + parent: 1 + - uid: 1653 + components: + - type: Transform + pos: -9.5,-13.5 + parent: 1 +- proto: RandomSpawner100 + entities: + - uid: 1755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-12.5 + parent: 1 + - uid: 1756 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 1 + - uid: 1757 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 1 + - uid: 1758 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 161 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 +- proto: RollerBed + entities: + - uid: 1025 + components: + - type: Transform + pos: 12.4434805,-16.423481 + parent: 1 +- proto: RubberStampCaptain + entities: + - uid: 384 + components: + - type: Transform + parent: 378 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SalvageTechfabNF + entities: + - uid: 1035 + components: + - type: Transform + pos: 14.5,-22.5 + parent: 1 +- proto: SciFlash + entities: + - uid: 558 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.6148076,-28.616013 + parent: 1 +- proto: ScrapProcessor + entities: + - uid: 1034 + components: + - type: Transform + pos: 19.5,-16.5 + parent: 1 +- proto: SheetSteel10 + entities: + - uid: 707 + components: + - type: Transform + pos: -4.3686066,-28.4888 + parent: 1 +- proto: ShieldGeneratorSmall + entities: + - uid: 1843 + components: + - type: Transform + pos: 14.5,-33.5 + parent: 1 +- proto: ShuttersNormalOpen + entities: + - uid: 1676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 199 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 1 + - uid: 507 + components: + - type: Transform + pos: 8.5,-9.5 + parent: 1 + - uid: 508 + components: + - type: Transform + pos: 9.5,-9.5 + parent: 1 + - uid: 509 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 1 + - uid: 511 + components: + - type: Transform + pos: 11.5,-9.5 + parent: 1 + - uid: 1597 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 1 +- proto: ShuttleWindowPlasma + entities: + - uid: 2 + components: + - type: Transform + pos: 9.5,0.5 + parent: 1 + - uid: 4 + components: + - type: Transform + pos: 8.5,0.5 + parent: 1 + - uid: 5 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 6.5,0.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 5.5,0.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 9 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-0.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 1 + - uid: 19 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 1 + - uid: 20 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 21 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-0.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-1.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-0.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-20.5 + parent: 1 + - uid: 638 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-19.5 + parent: 1 + - uid: 655 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-19.5 + parent: 1 + - uid: 656 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 1 + - uid: 657 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-19.5 + parent: 1 + - uid: 661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 1 + - uid: 755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-0.5 + parent: 1 +- proto: ShuttleWindowPlasmaDiagonal + entities: + - uid: 24 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,0.5 + parent: 1 + - uid: 606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 1 + - uid: 742 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 +- proto: SignalButton + entities: + - uid: 640 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-17.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 623: + - - Pressed + - Toggle + 624: + - - Pressed + - Toggle +- proto: SignalButtonWindows + entities: + - uid: 435 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-18.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 11: + - - Pressed + - Toggle + 1591: + - - Pressed + - Toggle + 1613: + - - Pressed + - Toggle + - uid: 1667 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1665: + - - Pressed + - Toggle + 1664: + - - Pressed + - Toggle + - uid: 1677 + components: + - type: Transform + pos: 1.905215,-9.572296 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1676: + - - Pressed + - Toggle +- proto: SignAnomaly + entities: + - uid: 1113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 1 +- proto: SignAnomaly2 + entities: + - uid: 705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-23.5 + parent: 1 +- proto: SignAtmos + entities: + - uid: 732 + components: + - type: Transform + pos: -2.5,-32.5 + parent: 1 +- proto: SignBar + entities: + - uid: 491 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 +- proto: SignBridge + entities: + - uid: 497 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 +- proto: SignDirectionalShop + entities: + - uid: 197 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-9.5 + parent: 1 + - uid: 1662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 1 +- proto: SignEngineering + entities: + - uid: 1079 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-23.5 + parent: 1 +- proto: SignKitchen + entities: + - uid: 538 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 +- proto: SignMedical + entities: + - uid: 1018 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-13.5 + parent: 1 +- proto: SignRadiationMed + entities: + - uid: 1063 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 1 +- proto: SignRND + entities: + - uid: 736 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 1 +- proto: SignRobo + entities: + - uid: 703 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 1 +- proto: SignSalvage + entities: + - uid: 1037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-13.5 + parent: 1 +- proto: SignShock + entities: + - uid: 1065 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 1 +- proto: SignSpace + entities: + - uid: 1536 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-18.5 + parent: 1 + - uid: 1539 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 1 +- proto: Sink + entities: + - uid: 520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 1 +- proto: SMESAdvancedEmpty + entities: + - uid: 1102 + components: + - type: Transform + pos: 14.5,-35.5 + parent: 1 + - uid: 1103 + components: + - type: Transform + pos: 14.5,-34.5 + parent: 1 +- proto: SodaDispenser + entities: + - uid: 490 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 1 +- proto: SpaceCashCounterfeit + entities: + - uid: 1759 + components: + - type: Transform + pos: 15.549534,-12.42285 + parent: 1 + - uid: 1760 + components: + - type: Transform + pos: 15.539117,-12.23535 + parent: 1 +- proto: SpawnDungeonLootFood + entities: + - uid: 1694 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.4692545,-10.488867 + parent: 1 + - uid: 1695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.677588,-11.259701 + parent: 1 +- proto: SpawnPointContractorInterview + entities: + - uid: 1542 + components: + - type: Transform + pos: 9.5,-7.5 + parent: 1 +- proto: SpawnPointLatejoin + entities: + - uid: 1558 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 1 +- proto: SpawnPointMercenaryInterview + entities: + - uid: 1544 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 +- proto: SpawnPointPilotInterview + entities: + - uid: 1543 + components: + - type: Transform + pos: 10.5,-7.5 + parent: 1 +- proto: StairBridge + entities: + - uid: 255 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 1 + - uid: 434 + components: + - type: Transform + pos: -0.5,-37.5 + parent: 1 + - uid: 1602 + components: + - type: Transform + pos: 14.5,-4.5 + parent: 1 + - uid: 1782 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-17.5 + parent: 1 + - uid: 1783 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-17.5 + parent: 1 +- proto: Stairs + entities: + - uid: 710 + components: + - type: Transform + pos: -2.5,-24.5 + parent: 1 +- proto: StationMap + entities: + - uid: 1567 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-13.5 + parent: 1 + - uid: 1568 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 1 + - uid: 1569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-16.5 + parent: 1 + - uid: 1570 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 1 +- proto: StoolBar + entities: + - uid: 492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 1 + - uid: 493 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 1 +- proto: StorageCanister + entities: + - uid: 298 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 1 + - uid: 633 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 1 + - type: Lock + locked: False + - uid: 739 + components: + - type: Transform + pos: -0.5,-38.5 + parent: 1 +- proto: StructureMeleeWeaponRackSalvage + entities: + - uid: 763 + components: + - type: Transform + pos: 18.5,-22.5 + parent: 1 + - type: ContainerContainer + containers: + weapon1: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1028 + weapon2: !type:ContainerSlot + showEnts: False + occludes: True + ent: 1029 + weapon3: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon4: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon5: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: SubstationBasic + entities: + - uid: 904 + components: + - type: Transform + pos: 12.5,-38.5 + parent: 1 +- proto: SuitStorageWallmount + entities: + - uid: 1073 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-27.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14914 + 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: + - 1114 + - 1555 + - 1579 + - 1581 + - 1992 +- proto: SurvivalKnife + entities: + - uid: 887 + components: + - type: Transform + pos: 17.560162,-7.459557 + parent: 1 +- proto: Syringe + entities: + - uid: 663 + components: + - type: Transform + pos: -6.323922,-15.427822 + parent: 1 +- proto: Table + entities: + - uid: 521 + components: + - type: Transform + pos: 9.5,-10.5 + parent: 1 + - uid: 522 + components: + - type: Transform + pos: 8.5,-10.5 + parent: 1 + - uid: 987 + components: + - type: Transform + pos: 14.5,-17.5 + parent: 1 + - uid: 989 + components: + - type: Transform + pos: 12.5,-18.5 + parent: 1 +- proto: TableCarpet + entities: + - uid: 876 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-11.5 + parent: 1 +- proto: TableCounterMetal + entities: + - uid: 504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 1 + - uid: 526 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 1 + - uid: 527 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 1 + - uid: 577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,-8.5 + parent: 1 + - uid: 578 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 1 + - uid: 626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 1 + - uid: 630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 1 + - uid: 711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-28.5 + parent: 1 + - uid: 712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-28.5 + parent: 1 + - uid: 848 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 1 + - uid: 850 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-7.5 + parent: 1 + - uid: 852 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-6.5 + parent: 1 +- proto: TableCounterWood + entities: + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-12.5 + parent: 1 + - uid: 439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-11.5 + parent: 1 + - uid: 484 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 1 + - uid: 485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 1 + - uid: 487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 1 + - uid: 488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-12.5 + parent: 1 + - uid: 857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 1 +- proto: TableFancyBlack + entities: + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 1 + - uid: 164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 1 + - uid: 931 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 1 +- proto: TableFancyRed + entities: + - uid: 371 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 373 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 330 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 1 + - uid: 331 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 1 + - uid: 333 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 1 +- proto: Thruster + entities: + - uid: 121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-32.5 + parent: 1 +- proto: ThrusterMediumLong + entities: + - uid: 162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-23.5 + parent: 1 + - type: ApcPowerReceiver + powerLoad: 1 + - uid: 163 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-23.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: 11.5,-31.5 + parent: 1 + - uid: 1098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-15.5 + parent: 1 + - uid: 1118 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 1 + - uid: 1127 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-21.5 + parent: 1 + - uid: 1177 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-21.5 + parent: 1 + - uid: 1214 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-15.5 + parent: 1 + - uid: 1243 + components: + - type: Transform + pos: 21.5,-16.5 + parent: 1 + - uid: 1610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-15.5 + parent: 1 + - uid: 1784 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-15.5 + parent: 1 +- proto: TLFlag + entities: + - uid: 1841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 1 +- proto: ToyFigurineParamedic + entities: + - uid: 1027 + components: + - type: Transform + pos: 14.240396,-17.300247 + parent: 1 +- proto: UnfinishedMachineFrame + entities: + - uid: 1006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-18.5 + parent: 1 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 1778 + components: + - type: Transform + pos: -1.5,-37.5 + parent: 1 +- proto: VendingMachineBooze + entities: + - uid: 486 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 1 +- proto: VendingMachineChefvend + entities: + - uid: 513 + components: + - type: Transform + pos: 9.5,-12.5 + parent: 1 +- proto: VendingMachineDinnerware + entities: + - uid: 519 + components: + - type: Transform + pos: 8.5,-12.5 + parent: 1 +- proto: VendingMachineEngivend + entities: + - uid: 1541 + components: + - type: Transform + pos: 18.5,-25.5 + parent: 1 +- proto: VendingMachineRobotics + entities: + - uid: 702 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 1036 + components: + - type: Transform + pos: 15.5,-22.5 + parent: 1 + - uid: 1657 + components: + - type: Transform + pos: -7.5,-11.5 + parent: 1 +- proto: VendingMachineYouTool + entities: + - uid: 1074 + components: + - type: Transform + pos: 18.5,-24.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 3 + components: + - type: Transform + pos: -0.5,-40.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: 20.5,-13.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-1.5 + parent: 1 + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-1.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-3.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-3.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-3.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-2.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 1 + - uid: 44 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-3.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 1 + - uid: 50 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 13.5,-9.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 17.5,-6.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 20.5,-18.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: 18.5,-7.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: 19.5,-7.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: 19.5,-8.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: 20.5,-8.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: 20.5,-17.5 + parent: 1 + - uid: 64 + components: + - type: Transform + pos: 19.5,-15.5 + parent: 1 + - uid: 65 + components: + - type: Transform + pos: 20.5,-15.5 + parent: 1 + - uid: 66 + components: + - type: Transform + pos: 0.5,-34.5 + parent: 1 + - uid: 67 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 1 + - uid: 68 + components: + - type: Transform + pos: -7.5,-7.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 1 + - uid: 74 + components: + - type: Transform + pos: -7.5,-8.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -7.5,-13.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -8.5,-15.5 + parent: 1 + - uid: 79 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 1 + - uid: 80 + components: + - type: Transform + pos: 13.5,-10.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: -8.5,-19.5 + parent: 1 + - uid: 89 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 1 + - uid: 91 + components: + - type: Transform + pos: -7.5,-25.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: -7.5,-26.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: -7.5,-27.5 + parent: 1 + - uid: 94 + components: + - type: Transform + pos: -7.5,-28.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -6.5,-28.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: -5.5,-29.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: -5.5,-31.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: -4.5,-32.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: -3.5,-32.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: -3.5,-33.5 + parent: 1 + - uid: 104 + components: + - type: Transform + pos: -3.5,-34.5 + parent: 1 + - uid: 105 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: -3.5,-36.5 + parent: 1 + - uid: 107 + components: + - type: Transform + pos: -3.5,-37.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: -1.5,-38.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-39.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 0.5,-40.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 0.5,-43.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 11.5,-36.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 11.5,-43.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 11.5,-42.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 11.5,-41.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 11.5,-40.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 12.5,-40.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 13.5,-39.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 13.5,-38.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 14.5,-38.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 15.5,-37.5 + parent: 1 + - uid: 141 + components: + - type: Transform + pos: 15.5,-36.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 15.5,-35.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 15.5,-34.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 15.5,-33.5 + parent: 1 + - uid: 145 + components: + - type: Transform + pos: 15.5,-32.5 + parent: 1 + - uid: 146 + components: + - type: Transform + pos: 16.5,-32.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 17.5,-32.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: 17.5,-31.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 17.5,-30.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: 17.5,-29.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 17.5,-28.5 + parent: 1 + - uid: 152 + components: + - type: Transform + pos: 18.5,-28.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 19.5,-28.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 19.5,-27.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 19.5,-26.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 19.5,-25.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 19.5,-24.5 + parent: 1 + - uid: 158 + components: + - type: Transform + pos: 19.5,-23.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 20.5,-22.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: 20.5,-16.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-19.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: 11.5,-34.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: -0.5,-31.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: -0.5,-30.5 + parent: 1 + - uid: 188 + components: + - type: Transform + pos: -0.5,-29.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: -0.5,-28.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -0.5,-27.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: -0.5,-26.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: -0.5,-25.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: 0.5,-19.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-33.5 + parent: 1 + - uid: 200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-33.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 2.5,-18.5 + parent: 1 + - uid: 205 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-11.5 + parent: 1 + - uid: 207 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 1 + - uid: 208 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-16.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-32.5 + parent: 1 + - uid: 210 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-32.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: 10.5,-18.5 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-33.5 + parent: 1 + - uid: 219 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-16.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: 12.5,-24.5 + parent: 1 + - uid: 221 + components: + - type: Transform + pos: 12.5,-25.5 + parent: 1 + - uid: 222 + components: + - type: Transform + pos: 12.5,-26.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 12.5,-27.5 + parent: 1 + - uid: 224 + components: + - type: Transform + pos: 12.5,-28.5 + parent: 1 + - uid: 225 + components: + - type: Transform + pos: 12.5,-29.5 + parent: 1 + - uid: 226 + components: + - type: Transform + pos: 12.5,-30.5 + parent: 1 + - uid: 227 + components: + - type: Transform + pos: 12.5,-31.5 + parent: 1 + - uid: 236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-21.5 + parent: 1 + - uid: 237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-19.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-22.5 + parent: 1 + - uid: 241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-23.5 + parent: 1 + - uid: 243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-18.5 + parent: 1 + - uid: 245 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-19.5 + parent: 1 + - uid: 246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-20.5 + parent: 1 + - uid: 247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-21.5 + parent: 1 + - uid: 248 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-22.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-23.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 17.5,-14.5 + parent: 1 + - uid: 254 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: 1.5,-18.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: 2.5,-13.5 + parent: 1 + - uid: 268 + components: + - type: Transform + pos: 3.5,-13.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 4.5,-13.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 1 + - uid: 272 + components: + - type: Transform + pos: 7.5,-13.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: 8.5,-13.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 9.5,-13.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 279 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: 9.5,-14.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 9.5,-15.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: 9.5,-16.5 + parent: 1 + - uid: 283 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 1 + - uid: 285 + components: + - type: Transform + pos: 2.5,-15.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: 2.5,-14.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: 2.5,-16.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 1 + - uid: 310 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 + - uid: 312 + components: + - type: Transform + pos: 8.5,-6.5 + parent: 1 + - uid: 313 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 1 + - uid: 317 + components: + - type: Transform + pos: 6.5,-6.5 + parent: 1 + - uid: 318 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 1 + - uid: 319 + components: + - type: Transform + pos: 10.5,-6.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 11.5,-6.5 + parent: 1 + - uid: 321 + components: + - type: Transform + pos: 12.5,-6.5 + parent: 1 + - uid: 322 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: 9.5,-6.5 + parent: 1 + - uid: 325 + components: + - type: Transform + pos: 7.5,-6.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: 11.5,-35.5 + parent: 1 + - uid: 429 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 1 + - uid: 432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-22.5 + parent: 1 + - uid: 441 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 1 + - uid: 452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 1 + - uid: 453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 1 + - uid: 454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 1 + - uid: 455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 1 + - uid: 456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 1 + - uid: 458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 1 + - uid: 460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 1 + - uid: 461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 1 + - uid: 462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 1 + - uid: 463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-11.5 + parent: 1 + - uid: 464 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 1 + - uid: 465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 1 + - uid: 466 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-13.5 + parent: 1 + - uid: 467 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-13.5 + parent: 1 + - uid: 468 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-13.5 + parent: 1 + - uid: 469 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-13.5 + parent: 1 + - uid: 470 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,-13.5 + parent: 1 + - uid: 472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-13.5 + parent: 1 + - uid: 473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-13.5 + parent: 1 + - uid: 474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + - uid: 475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + - uid: 476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 13.5,-7.5 + parent: 1 + - uid: 477 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 1 + - uid: 478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 1 + - uid: 479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 1 + - uid: 480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 1 + - uid: 501 + components: + - type: Transform + pos: 18.5,-6.5 + parent: 1 + - uid: 503 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 1 + - uid: 505 + components: + - type: Transform + pos: -4.5,-13.5 + parent: 1 + - uid: 510 + components: + - type: Transform + pos: 20.5,-23.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: 7.5,-9.5 + parent: 1 + - uid: 524 + components: + - type: Transform + pos: 6.5,-9.5 + parent: 1 + - uid: 543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 1 + - uid: 544 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 1 + - uid: 545 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 1 + - uid: 546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-24.5 + parent: 1 + - uid: 573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 1 + - uid: 574 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,-22.5 + parent: 1 + - uid: 614 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-20.5 + parent: 1 + - uid: 616 + components: + - type: Transform + pos: -3.5,-23.5 + parent: 1 + - uid: 617 + components: + - type: Transform + pos: -6.5,-23.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: -5.5,-23.5 + parent: 1 + - uid: 619 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-23.5 + parent: 1 + - uid: 622 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-23.5 + parent: 1 + - uid: 634 + components: + - type: Transform + pos: -8.5,-23.5 + parent: 1 + - uid: 643 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-17.5 + parent: 1 + - uid: 647 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-16.5 + parent: 1 + - uid: 662 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 1 + - uid: 695 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-32.5 + parent: 1 + - uid: 741 + components: + - type: Transform + pos: 21.5,-13.5 + parent: 1 + - uid: 744 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 1 + - uid: 752 + components: + - type: Transform + pos: 0.5,-38.5 + parent: 1 + - uid: 758 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 1 + - uid: 762 + components: + - type: Transform + pos: 11.5,-38.5 + parent: 1 + - uid: 855 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-24.5 + parent: 1 + - uid: 899 + components: + - type: Transform + pos: 15.5,-15.5 + parent: 1 + - uid: 903 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-39.5 + parent: 1 + - uid: 974 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 14.5,-23.5 + parent: 1 + - uid: 975 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-23.5 + parent: 1 + - uid: 976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-23.5 + parent: 1 + - uid: 977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-23.5 + parent: 1 + - uid: 978 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-23.5 + parent: 1 + - uid: 981 + components: + - type: Transform + pos: 15.5,-16.5 + parent: 1 + - uid: 982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 17.5,-15.5 + parent: 1 + - uid: 983 + components: + - type: Transform + pos: 15.5,-17.5 + parent: 1 + - uid: 984 + components: + - type: Transform + pos: 15.5,-18.5 + parent: 1 + - uid: 985 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 1 + - uid: 986 + components: + - type: Transform + pos: 14.5,-19.5 + parent: 1 + - uid: 990 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 1 + - uid: 991 + components: + - type: Transform + pos: 5.5,-14.5 + parent: 1 + - uid: 1004 + components: + - type: Transform + pos: 6.5,-14.5 + parent: 1 + - uid: 1005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,-9.5 + parent: 1 + - uid: 1015 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,-9.5 + parent: 1 + - uid: 1016 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,-15.5 + parent: 1 + - uid: 1059 + components: + - type: Transform + pos: 14.5,-32.5 + parent: 1 + - uid: 1064 + components: + - type: Transform + pos: 14.5,-29.5 + parent: 1 + - uid: 1066 + components: + - type: Transform + pos: 17.5,-27.5 + parent: 1 + - uid: 1068 + components: + - type: Transform + pos: 14.5,-31.5 + parent: 1 + - uid: 1070 + components: + - type: Transform + pos: 16.5,-27.5 + parent: 1 + - uid: 1071 + components: + - type: Transform + pos: 14.5,-27.5 + parent: 1 + - uid: 1091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-37.5 + parent: 1 + - uid: 1092 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-39.5 + parent: 1 + - uid: 1095 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,-39.5 + parent: 1 + - uid: 1121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-33.5 + parent: 1 + - uid: 1122 + components: + - type: Transform + pos: 12.5,-41.5 + parent: 1 + - uid: 1178 + components: + - type: Transform + pos: 6.5,-16.5 + parent: 1 + - uid: 1239 + components: + - type: Transform + pos: 0.5,-36.5 + parent: 1 + - uid: 1242 + components: + - type: Transform + pos: 0.5,-37.5 + parent: 1 + - uid: 1526 + components: + - type: Transform + pos: 18.5,-30.5 + parent: 1 + - uid: 1557 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 1 + - uid: 1594 + components: + - type: Transform + pos: 16.5,-34.5 + parent: 1 + - uid: 1595 + components: + - type: Transform + pos: 16.5,-33.5 + parent: 1 + - uid: 1596 + components: + - type: Transform + pos: 18.5,-29.5 + parent: 1 + - uid: 1598 + components: + - type: Transform + pos: 16.5,-4.5 + parent: 1 + - uid: 1604 + components: + - type: Transform + pos: 18.5,-14.5 + parent: 1 + - uid: 1605 + components: + - type: Transform + pos: 20.5,-14.5 + parent: 1 + - uid: 1606 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-33.5 + parent: 1 + - uid: 1607 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-34.5 + parent: 1 + - uid: 1608 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-29.5 + parent: 1 + - uid: 1609 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-30.5 + parent: 1 + - uid: 1633 + components: + - type: Transform + pos: 0.5,-35.5 + parent: 1 + - uid: 1636 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,-37.5 + parent: 1 + - uid: 1638 + components: + - type: Transform + pos: 11.5,-37.5 + parent: 1 + - uid: 1652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,-9.5 + parent: 1 + - uid: 1654 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 1 + - uid: 1671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,-9.5 + parent: 1 + - uid: 1766 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 1 + - uid: 1785 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 1 + - uid: 1789 + components: + - type: Transform + pos: 5.5,-16.5 + parent: 1 + - uid: 1790 + components: + - type: Transform + pos: 5.5,-13.5 + parent: 1 + - uid: 1828 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,-18.5 + parent: 1 + - uid: 1998 + components: + - type: Transform + pos: 14.5,-28.5 + parent: 1 + - uid: 2002 + components: + - type: Transform + pos: 14.5,-30.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,-8.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 1 + - uid: 27 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,-13.5 + parent: 1 + - uid: 34 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 1 + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-18.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-31.5 + parent: 1 + - uid: 125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-18.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-14.5 + parent: 1 + - uid: 436 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-38.5 + parent: 1 + - uid: 500 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,-14.5 + parent: 1 + - uid: 856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-25.5 + parent: 1 + - uid: 905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-40.5 + parent: 1 + - uid: 1088 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-13.5 + parent: 1 + - uid: 1093 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-44.5 + parent: 1 + - uid: 1094 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-44.5 + parent: 1 + - uid: 1096 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 15.5,-38.5 + parent: 1 + - uid: 1100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 1 + - uid: 1220 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 1 + - uid: 1221 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-29.5 + parent: 1 + - uid: 1224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-31.5 + parent: 1 + - uid: 1225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,-33.5 + parent: 1 + - uid: 1226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-35.5 + parent: 1 + - uid: 1238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-39.5 + parent: 1 + - uid: 1259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-39.5 + parent: 1 + - uid: 1529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 16.5,-35.5 + parent: 1 + - uid: 1530 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 17.5,-33.5 + parent: 1 + - uid: 1531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-31.5 + parent: 1 + - uid: 1535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-29.5 + parent: 1 + - uid: 1540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,-24.5 + parent: 1 + - uid: 1548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,-7.5 + parent: 1 + - uid: 1571 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,-6.5 + parent: 1 + - uid: 1583 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-4.5 + parent: 1 + - uid: 1584 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-3.5 + parent: 1 + - uid: 1585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-2.5 + parent: 1 + - uid: 1586 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,-0.5 + parent: 1 + - uid: 1587 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 1588 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 1 + - uid: 1589 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 1 + - uid: 1590 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 1 + - uid: 1592 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 1 + - uid: 1593 + components: + - type: Transform + pos: -8.5,-7.5 + parent: 1 + - uid: 1611 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-25.5 + parent: 1 + - uid: 1612 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-40.5 + parent: 1 + - uid: 1680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 1 + - uid: 1685 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-24.5 + parent: 1 + - uid: 1829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-18.5 + parent: 1 +- proto: WardrobeAtmospherics + entities: + - uid: 1779 + components: + - type: Transform + pos: -2.5,-34.5 + parent: 1 +- proto: WardrobeAtmosphericsFilled + entities: + - uid: 1780 + components: + - type: Transform + pos: -2.5,-33.5 + parent: 1 +- proto: WardrobeEngineeringFilled + entities: + - uid: 198 + components: + - type: Transform + pos: 14.5,-24.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + 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: + - 1069 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: WardrobeMedicalDoctorFilled + entities: + - uid: 1013 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: WarpPoint + entities: + - uid: 1545 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 1 +- proto: WeaponCapacitorRecharger + entities: + - uid: 664 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 1 +- proto: WeaponTurretM220 + entities: + - uid: 170 + components: + - type: Transform + pos: 12.5,-42.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -0.5,-42.5 + parent: 1 + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 18.5,-5.5 + parent: 1 + - uid: 737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-5.5 + parent: 1 +- proto: WindoorSecure + entities: + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 14.5,-10.5 + parent: 1 + - uid: 862 + components: + - type: Transform + pos: 18.5,-8.5 + parent: 1 + - uid: 863 + components: + - type: Transform + pos: 17.5,-7.5 + parent: 1 + - uid: 864 + components: + - type: Transform + pos: 16.5,-6.5 + parent: 1 + - uid: 1041 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 1 +- proto: WindowFrostedDirectional + entities: + - uid: 913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,-10.5 + parent: 1 + - uid: 1765 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,-16.5 + parent: 1 +- proto: WindowReinforcedDirectional + entities: + - uid: 340 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: 8.5,-4.5 + parent: 1 + - uid: 342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,-3.5 + parent: 1 + - uid: 343 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,-3.5 + parent: 1 + - uid: 344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-3.5 + parent: 1 + - uid: 345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 1 + - uid: 346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 1 + - uid: 347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-3.5 + parent: 1 + - uid: 348 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 1 + - uid: 351 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 1 + - uid: 352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 353 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 1 + - uid: 559 + components: + - type: Transform + pos: 6.5,-11.5 + parent: 1 + - uid: 560 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 1 + - uid: 561 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1 + - uid: 562 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-10.5 + parent: 1 + - uid: 670 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 1 + - uid: 671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 1 + - uid: 672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 1 + - uid: 673 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-15.5 + parent: 1 + - uid: 674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-15.5 + parent: 1 + - uid: 675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-15.5 + parent: 1 + - uid: 676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 1 + - uid: 677 + components: + - type: Transform + pos: -1.5,-17.5 + parent: 1 + - uid: 678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 1 + - uid: 679 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-15.5 + parent: 1 + - uid: 718 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-28.5 + parent: 1 + - uid: 719 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-28.5 + parent: 1 + - uid: 720 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 1 + - uid: 722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-25.5 + parent: 1 + - uid: 867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 1 + - uid: 868 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,-7.5 + parent: 1 + - uid: 869 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.5,-6.5 + parent: 1 + - uid: 1040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-4.5 + parent: 1 +... diff --git a/Resources/Maps/_Forge/Shuttles/Science/phoenix.yml b/Resources/Maps/_Forge/Shuttles/Science/phoenix.yml index 1b02f6053d8b..1dee3b7c2187 100644 --- a/Resources/Maps/_Forge/Shuttles/Science/phoenix.yml +++ b/Resources/Maps/_Forge/Shuttles/Science/phoenix.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Grid - engineVersion: 255.1.0 + engineVersion: 268.1.0 forkId: "" forkVersion: "" - time: 06/11/2025 07:23:49 - entityCount: 762 + time: 01/20/2026 06:15:51 + entityCount: 761 maps: [] grids: - 1 @@ -44,20 +44,20 @@ entities: chunks: 0,0: ind: 0,0 - tiles: aQAAAAAAHgAAAAAAIgAAAAACIgAAAAABIgAAAAABHgAAAAADHgAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADIgAAAAABIgAAAAACIgAAAAACHgAAAAACHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAACHgAAAAADHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAADbQAAAAACegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAADIgAAAAADIgAAAAAAIgAAAAACbQAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAACIgAAAAADIgAAAAAAIgAAAAABbQAAAAABegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACcgAAAAAAcgAAAAADcgAAAAADbQAAAAACbQAAAAAAbQAAAAACbQAAAAADAQAAAAABAgAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAACbQAAAAAAegAAAAAAegAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAZQAAAAABPwAAAAAAPwAAAAAAPwAAAAAAaQAAAAAAHgAAAAAAHgAAAAACegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAZQAAAAABPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAACegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAZQAAAAADPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAABHgAAAAADHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAegAAAAAAZQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAegAAAAAAHgAAAAAAHgAAAAAAHgAAAAABegAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: aQAAAAAAAB4AAAAAAAAiAAAAAAIAIgAAAAABACIAAAAAAQAeAAAAAAMAHgAAAAADAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAeAAAAAAMAIgAAAAABACIAAAAAAgAiAAAAAAIAHgAAAAACAB4AAAAAAgB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAHgAAAAADAB4AAAAAAAAeAAAAAAMAHgAAAAACAB4AAAAAAwAeAAAAAAEAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAaQAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG0AAAAAAABtAAAAAAIAbQAAAAABAG0AAAAAAwBtAAAAAAMAbQAAAAACAHoAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABtAAAAAAIAbQAAAAADACIAAAAAAwAiAAAAAAAAIgAAAAACAG0AAAAAAAB6AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAAG0AAAAAAgAiAAAAAAMAIgAAAAAAACIAAAAAAQBtAAAAAAEAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAG0AAAAAAgByAAAAAAAAcgAAAAADAHIAAAAAAwBtAAAAAAIAbQAAAAAAAG0AAAAAAgBtAAAAAAMAAQAAAAABAAIAAAAAAAB6AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABtAAAAAAIAbQAAAAAAAHoAAAAAAAB6AAAAAAAAbQAAAAADAG0AAAAAAABtAAAAAAAAbQAAAAACAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAAHoAAAAAAAB6AAAAAAAAeQAAAAAAAHoAAAAAAABlAAAAAAEAPwAAAAAAAD8AAAAAAAA/AAAAAAAAaQAAAAAAAB4AAAAAAAAeAAAAAAIAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAB6AAAAAAAAZQAAAAABAD8AAAAAAAA/AAAAAAAAPwAAAAAAAHoAAAAAAAAeAAAAAAAAHgAAAAAAAB4AAAAAAgB6AAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAegAAAAAAAGUAAAAAAwA/AAAAAAAAPwAAAAAAAD8AAAAAAAB6AAAAAAAAHgAAAAABAB4AAAAAAwAeAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAHoAAAAAAABlAAAAAAAAPwAAAAAAAD8AAAAAAAA/AAAAAAAAegAAAAAAAB4AAAAAAAAeAAAAAAAAHgAAAAABAHoAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHkAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAADHgAAAAADIgAAAAABIgAAAAAAIgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAACHgAAAAAAIgAAAAABIgAAAAABIgAAAAACHgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAAAHgAAAAACHgAAAAABHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAABHgAAAAAAHgAAAAABegAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAHgAAAAACHgAAAAABHgAAAAACaQAAAAAAbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAADegAAAAAAbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAegAAAAAAHgAAAAADHgAAAAAAHgAAAAADHgAAAAABegAAAAAAcgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAaQAAAAAAHgAAAAABHgAAAAAAHgAAAAADegAAAAAAegAAAAAAbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAWgAAAAACZQAAAAABegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAWgAAAAADWgAAAAADegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAYQAAAAAAYQAAAAAAZQAAAAABZQAAAAABegAAAAAAAAAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAQQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAeQAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAB4AAAAAAwAeAAAAAAMAIgAAAAABACIAAAAAAAAiAAAAAAIAHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAeAAAAAAIAHgAAAAAAACIAAAAAAQAiAAAAAAEAIgAAAAACAB4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAHgAAAAAAAB4AAAAAAwAeAAAAAAAAHgAAAAACAB4AAAAAAQAeAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB6AAAAAAAAHgAAAAABAB4AAAAAAAAeAAAAAAEAegAAAAAAAG0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAegAAAAAAAB4AAAAAAgAeAAAAAAEAHgAAAAACAGkAAAAAAABtAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAeAAAAAAMAHgAAAAAAAB4AAAAAAwB6AAAAAAAAbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHoAAAAAAABhAAAAAAAAYQAAAAAAAHoAAAAAAAAeAAAAAAMAHgAAAAAAAB4AAAAAAwAeAAAAAAEAegAAAAAAAHIAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHoAAAAAAABhAAAAAAAAYQAAAAAAAGEAAAAAAABpAAAAAAAAHgAAAAABAB4AAAAAAAAeAAAAAAMAegAAAAAAAHoAAAAAAABtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAABhAAAAAAAAYQAAAAAAAGEAAAAAAABhAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHkAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAABhAAAAAAAAYQAAAAAAAGEAAAAAAABhAAAAAAAAYQAAAAAAAGEAAAAAAABaAAAAAAIAZQAAAAABAHoAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAYQAAAAAAAGEAAAAAAABhAAAAAAAAYQAAAAAAAGEAAAAAAABhAAAAAAAAWgAAAAADAFoAAAAAAwB6AAAAAAAAAAAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAEEAAAAAAABBAAAAAAAAQQAAAAAAAEEAAAAAAABhAAAAAAAAYQAAAAAAAGUAAAAAAQBlAAAAAAEAegAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAABBAAAAAAAAQQAAAAAAAEEAAAAAAABBAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB5AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAIwAAAAABaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAIwAAAAACQQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAZQAAAAADaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACZQAAAAADWgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAABZQAAAAACWgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAWgAAAAACWgAAAAACWgAAAAAAZQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAWgAAAAABZQAAAAADZQAAAAAAZQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAegAAAAAAegAAAAAAegAAAAAAIwAAAAACIwAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAHgAAAAAAHgAAAAADHgAAAAACQQAAAAAAQQAAAAAAHgAAAAAD - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAIwAAAAABAGkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAegAAAAAAACMAAAAAAgBBAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAABlAAAAAAMAaQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAABaAAAAAAIAZQAAAAADAFoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHkAAAAAAAB6AAAAAAAAWgAAAAABAGUAAAAAAgBaAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAWgAAAAACAFoAAAAAAgBaAAAAAAAAZQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAegAAAAAAAFoAAAAAAQBlAAAAAAMAZQAAAAAAAGUAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB5AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAIwAAAAACACMAAAAAAQB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAB4AAAAAAAAeAAAAAAMAHgAAAAACAEEAAAAAAABBAAAAAAAAHgAAAAADAA== + version: 7 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAaQAAAAAAaQAAAAAAIwAAAAADegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQQAAAAAAQQAAAAAAIwAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACaQAAAAAAZQAAAAAAegAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAABWgAAAAABZQAAAAADWgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAADWgAAAAABZQAAAAABWgAAAAABegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZQAAAAABWgAAAAADWgAAAAAAWgAAAAABegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACZQAAAAABWgAAAAACWgAAAAAAWgAAAAADegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAegAAAAAAaQAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAaQAAAAAAHgAAAAADHgAAAAADHgAAAAACHgAAAAADHgAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGkAAAAAAABpAAAAAAAAIwAAAAADAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABBAAAAAAAAQQAAAAAAACMAAAAAAwB6AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWgAAAAACAGkAAAAAAABlAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFoAAAAAAQBaAAAAAAEAZQAAAAADAFoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABaAAAAAAMAWgAAAAABAGUAAAAAAQBaAAAAAAEAegAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZQAAAAACAGUAAAAAAQBaAAAAAAMAWgAAAAAAAFoAAAAAAQB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGUAAAAAAgBlAAAAAAEAWgAAAAACAFoAAAAAAABaAAAAAAMAegAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAGkAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAGkAAAAAAAAeAAAAAAMAHgAAAAADAB4AAAAAAgAeAAAAAAMAHgAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -1201,6 +1201,7 @@ entities: - type: RadiationGridResistance - type: BecomesStation id: Phoenix + - type: ImplicitRoof - proto: AirAlarm entities: - uid: 2 @@ -2822,6 +2823,11 @@ entities: - type: Transform pos: -5.5,1.5 parent: 1 + - uid: 596 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 - proto: ExtinguisherCabinetFilled entities: - uid: 279 @@ -4399,14 +4405,6 @@ entities: - type: Transform pos: -2.5,4.5 parent: 1 -- proto: MachineAPE - entities: - - uid: 596 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,8.5 - parent: 1 - proto: MachineArtifactAnalyzer entities: - uid: 486 @@ -4421,13 +4419,6 @@ entities: - type: Transform pos: 4.5,4.5 parent: 1 -- proto: MachineMiniAnomalyGenerator - entities: - - uid: 607 - components: - - type: Transform - pos: 2.5,7.5 - parent: 1 - proto: MaterialReclaimer entities: - uid: 487 @@ -4603,14 +4594,6 @@ entities: - type: Transform pos: -1.5,3.5 parent: 1 -- proto: PowerCellRecharger - entities: - - uid: 513 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,10.5 - parent: 1 - proto: PoweredDimSmallLight entities: - uid: 514 @@ -6112,6 +6095,12 @@ entities: parent: 1 - proto: WeaponCapacitorRecharger entities: + - uid: 513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,10.5 + parent: 1 - uid: 751 components: - type: Transform diff --git a/Resources/Maps/_Forge/Shuttles/Science/pulsar.yml b/Resources/Maps/_Forge/Shuttles/Science/pulsar.yml index ced857d4cd29..0a5fc1dd37e2 100644 --- a/Resources/Maps/_Forge/Shuttles/Science/pulsar.yml +++ b/Resources/Maps/_Forge/Shuttles/Science/pulsar.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Grid - engineVersion: 255.1.0 + engineVersion: 268.1.0 forkId: "" forkVersion: "" - time: 07/03/2025 22:13:31 - entityCount: 656 + time: 01/21/2026 07:03:51 + entityCount: 664 maps: [] grids: - 1 @@ -44,20 +44,20 @@ entities: chunks: 0,0: ind: 0,0 - tiles: AAAAAAAAAAAAAAAAAQAAAAAADgAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADgAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABgAAAAAABgAAAAAABAAAAAAABAAAAAAABgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABQAAAAAABgAAAAAABAAAAAAABgAAAAAABgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABQAAAAAABgAAAAAABgAAAAAABAAAAAAABgAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAABgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAAEAAAAAAABAAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABAAAAAAABAAAAAAABAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AAAAAAAAAAAAAAAAAAABAAAAAAAADgAAAAAAAAQAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAA4AAAAAAAAEAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAGAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAUAAAAAAAAGAAAAAAAABgAAAAAAAAQAAAAAAAAEAAAAAAAABgAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAFAAAAAAAABQAAAAAAAAYAAAAAAAAEAAAAAAAABgAAAAAAAAYAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAAAAAYAAAAAAAAGAAAAAAAABAAAAAAAAAYAAAAAAAABAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAGAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAABAAAAAAAABAAAAAAAAAEAAAAAAAAAQAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 0,-1: ind: 0,-1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACAAAAAAACAAAAAAAAQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAADAAAAAAADAAAAAAABgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACQAAAAAACQAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAACQAAAAAABgAAAAAABgAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAACQAAAAAACQAAAAAAAAAAAAAABgAAAAAABgAAAAAABwAAAAAABwAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAQAAAAAADgAAAAAABAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAgAAAAAAAAIAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAMAAAAAAAADAAAAAAAAAYAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACQAAAAAAAAkAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAkAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAJAAAAAAAABgAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAkAAAAAAAAJAAAAAAAAAAAAAAAAAAYAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAADgAAAAAAAAQAAAAAAAABAAAAAAAAAwAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 -1,0: ind: -1,0 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABgAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABgAAAAAABAAAAAAABAAAAAAABgAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABgAAAAAABgAAAAAABAAAAAAABgAAAAAABQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAABgAAAAAABAAAAAAABgAAAAAABgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAABgAAAAAABAAAAAAABAAAAAAABAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAGAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAABgAAAAAAAAQAAAAAAAAEAAAAAAAABgAAAAAAAAYAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAAABAAAAAAAAAYAAAAAAAAFAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAABAAAAAAAABgAAAAAAAAQAAAAAAAAGAAAAAAAABgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAYAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 -1,-1: ind: -1,-1 - tiles: AgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAAAAAAAACAAAAAAAAQAAAAAAAQAAAAAACAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAAAAAAAACAAAAAAAAQAAAAAABgAAAAAADAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAAAAAAAACAAAAAAABwAAAAAAAAAAAAAACQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAQAAAAAACQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAACQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABgAAAAAABgAAAAAACQAAAAAAAAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAABwAAAAAABwAAAAAABwAAAAAABgAAAAAABgAAAAAAAAAAAAAACQAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAABwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAAQAAAAAACgAAAAAACgAAAAAACgAAAAAAAAAAAAAA - version: 6 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAAAAAAAAAAgAAAAAAAABAAAAAAAAAQAAAAAAAAgAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAQAAAAAAAAAAAAAAAAAIAAAAAAAAAQAAAAAAAAYAAAAAAAAMAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAEAAAAAAAAAAAAAAAAACAAAAAAAAAcAAAAAAAAAAAAAAAAACQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAACQAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAkAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABgAAAAAAAAYAAAAAAAAJAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAYAAAAAAAAGAAAAAAAAAAAAAAAAAAkAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAHAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAABAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAAAAAAAAAAAA== + version: 7 - type: Broadphase - type: Physics bodyStatus: InAir @@ -726,6 +726,7 @@ entities: 0: 65535 0,2: 0: 238 + 1: 8192 -1,2: 0: 61156 0,3: @@ -813,6 +814,7 @@ entities: - type: RadiationGridResistance - type: BecomesStation id: Sirius + - type: ImplicitRoof - proto: AirAlarm entities: - uid: 424 @@ -962,6 +964,18 @@ entities: - type: DeviceNetwork deviceLists: - 581 +- proto: AmmoLoaderSmall + entities: + - uid: 662 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 531: + - - AmmoLoaderLoad + - SpaceArtilleryLoad - proto: AnomalyScanner entities: - uid: 609 @@ -1146,6 +1160,11 @@ entities: - type: Transform pos: -5.5,6.5 parent: 1 + - uid: 432 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 - uid: 498 components: - type: Transform @@ -1933,6 +1952,12 @@ entities: - type: Transform pos: 3.5,-6.5 parent: 1 + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 1 - uid: 393 components: - type: Transform @@ -2010,6 +2035,13 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,0.5 parent: 1 +- proto: ComputerGunneryConsole + entities: + - uid: 593 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 - proto: ComputerTabletopAnalysisConsole entities: - uid: 584 @@ -2401,6 +2433,18 @@ entities: - type: DeviceNetwork deviceLists: - 563 +- proto: ForgeAmmoDrum20mmBase + entities: + - uid: 663 + components: + - type: Transform + pos: 5.6754103,-7.591426 + parent: 1 + - uid: 664 + components: + - type: Transform + pos: 5.3941603,-7.388301 + parent: 1 - proto: GasMixerOnFlipped entities: - uid: 207 @@ -3522,6 +3566,17 @@ entities: rot: 1.5707963267948966 rad pos: -3.5,11.5 parent: 1 +- proto: GunneryServerLow + entities: + - uid: 99 + components: + - type: Transform + pos: -3.5,-9.5 + parent: 1 + - type: Battery + startingCharge: 0 + - type: ApcPowerReceiver + powerLoad: 5 - proto: Gyroscope entities: - uid: 497 @@ -3627,27 +3682,19 @@ entities: rot: -1.5707963267948966 rad pos: -2.5,-8.5 parent: 1 -- proto: MachineAnomalyVessel - entities: - - uid: 34 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,9.5 - parent: 1 -- proto: MachineAPE +- proto: MachineArtifactAnalyzer entities: - - uid: 247 + - uid: 496 components: - type: Transform - pos: 1.5,9.5 + pos: -1.5,10.5 parent: 1 -- proto: MachineArtifactAnalyzer +- proto: MachineFrame entities: - - uid: 496 + - uid: 34 components: - type: Transform - pos: -1.5,10.5 + pos: 2.5,8.5 parent: 1 - proto: MachineMaterialSilo entities: @@ -3658,13 +3705,6 @@ entities: parent: 1 - type: MaterialStorageMagnetPickup magnetEnabled: True -- proto: MachineMiniAnomalyGenerator - entities: - - uid: 432 - components: - - type: Transform - pos: 2.5,8.5 - parent: 1 - proto: MaterialReclaimer entities: - uid: 256 @@ -3960,6 +4000,13 @@ entities: - type: Transform pos: 5.5,4.5 parent: 1 +- proto: Rack + entities: + - uid: 661 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 1 - proto: RailingCorner entities: - uid: 120 @@ -4561,11 +4608,6 @@ entities: parent: 1 - proto: TableWood entities: - - uid: 99 - components: - - type: Transform - pos: -2.5,1.5 - parent: 1 - uid: 179 components: - type: Transform @@ -5163,4 +5205,24 @@ entities: rot: 1.5707963267948966 rad pos: 0.5,-2.5 parent: 1 +- proto: WeaponNavalCannonM25 + entities: + - uid: 659 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 660 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 +- proto: WeaponTurretL85Autocannon + entities: + - uid: 531 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 1 ... diff --git a/Resources/Maps/_Forge/Shuttles/Science/serpent.yml b/Resources/Maps/_Forge/Shuttles/Science/serpent.yml index 71a83c7e2633..19e4a6e236a3 100644 --- a/Resources/Maps/_Forge/Shuttles/Science/serpent.yml +++ b/Resources/Maps/_Forge/Shuttles/Science/serpent.yml @@ -1,11 +1,11 @@ meta: format: 7 category: Grid - engineVersion: 262.0.0 + engineVersion: 268.1.0 forkId: "" forkVersion: "" - time: 07/22/2025 04:12:55 - entityCount: 1140 + time: 02/02/2026 08:05:36 + entityCount: 1723 maps: [] grids: - 1 @@ -14,11 +14,22 @@ orphans: nullspace: [] tilemap: 1: Space + 12: FloorDarkOffset 3: FloorElevatorShaft + 6: FloorGlass + 9: FloorHullReinforced 2: FloorMetalDiamond + 8: FloorMining + 7: FloorMiningDark 5: FloorMiningLight + 11: FloorRGlass + 10: FloorSteelMono + 14: FloorTechMaint2 + 15: FloorTechMaintDark + 16: FloorWhitePlastic 4: Lattice 0: Plating + 13: PlatingDamaged entities: - proto: "" entities: @@ -27,37 +38,55 @@ entities: - type: MetaData name: grid - type: Transform - pos: -0.5,-0.328125 + pos: -28.196938,-29.827663 parent: invalid - type: MapGrid chunks: 2,2: ind: 2,2 - tiles: BQAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + tiles: BQAAAAAAAAAAAAAAAAAJAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAoAAAAAAAAAAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAAAAAAAAAAJAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAAAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAkAAAAAAAABAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAABAAAAAAAAAEAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAEAAAAAAAAAQAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAkAAAAAAAABAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAGAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAJAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAACQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== version: 7 1,2: ind: 1,2 - tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAABQAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAACAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAkAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAoAAAAAAAALAAAAAAAACwAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAMAAAAAAAANAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAACgAAAAAAAAsAAAAAAAAKAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAEAAAAAAAAJAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAACwAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAAAQAAAAAAAAQAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAABAAAAAAAABAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAGAAAAAAAAAQAAAAAAAAYAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAEAAAAAAAAJAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAAAAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAJAAAAAAAAAAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAACQAAAAAAAAAAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAAAAAAAAAAAA== version: 7 1,1: ind: 1,1 - tiles: AQAAAAAAAAEAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAADAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAwAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAA== + tiles: BAAAAAAAAAQAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAAAMAAAAAAAAAwAAAAAAAA4AAAAAAAALAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAEAAAAAAAAEAAAAAAAAAAAAAAAAAAcAAAAAAAAHAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAACwAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAPAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAADgAAAAAAAAsAAAAAAAAOAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAQAAAAAAAAQAAAAAAAAAAAAAAAAADwAAAAAAAA8AAAAAAAAPAAAAAAAAAAAAAAAAAA8AAAAAAAADAAAAAAAAAAAAAAAAAA4AAAAAAAAOAAAAAAAADgAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAA8AAAAAAAAPAAAAAAAADwAAAAAAAAAAAAAAAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAABAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAMAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAoAAAAAAAALAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAADgAAAAAAAAEAAAAAAAAGAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAKAAAAAAAACgAAAAAAAAoAAAAAAAAKAAAAAAAACgAAAAAAAA4AAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAFAAAAAAAACgAAAAAAAAsAAAAAAAALAAAAAAAADAAAAAAAAAoAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAADAAAAAAAABQAAAAAAAAoAAAAAAAALAAAAAAAACwAAAAAAAAwAAAAAAAAKAAAAAAAADAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAKAAAAAAAACwAAAAAAAAsAAAAAAAAMAAAAAAAACgAAAAAAAAwAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAACgAAAAAAAAsAAAAAAAALAAAAAAAADAAAAAAAAAoAAAAAAAAMAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAADAAAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAoAAAAAAAALAAAAAAAACwAAAAAAAAwAAAAAAAAKAAAAAAAADAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAKAAAAAAAACwAAAAAAAAsAAAAAAAAMAAAAAAAACgAAAAAAAAUAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAACgAAAAAAAAsAAAAAAAALAAAAAAAADAAAAAAAAAoAAAAAAAAOAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAwAAAAAAAAUAAAAAAAAAAAAAAAAAAwAAAAAAAAoAAAAAAAALAAAAAAAACwAAAAAAAAwAAAAAAAAKAAAAAAAADgAAAAAAAA== version: 7 1,0: ind: 1,0 - tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAAAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAAAQAAAAAAAAQAAAAAAAABAAAAAAAABAAAAAAAAAMAAAAAAAACAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAgAAAAAAAAMAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAA== + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAYAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAQAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAAA4AAAAAAAALAAAAAAAADgAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAAEAAAAAAAAAAAAAAAAAAMAAAAAAAAOAAAAAAAADgAAAAAAAA4AAAAAAAADAAAAAAAAAAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAACQAAAAAAAAkAAAAAAAAAAAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAAAAAAAAAAABwAAAAAAAAwAAAAAAAADAAAAAAAADgAAAAAAAA4AAAAAAAAOAAAAAAAAAwAAAAAAAAAAAAAAAAAMAAAAAAAAAQAAAAAAAAkAAAAAAAAAAAAAAAAABwAAAAAAAAcAAAAAAAAHAAAAAAAAAAAAAAAAAAcAAAAAAAAMAAAAAAAAAAAAAAAAAA4AAAAAAAALAAAAAAAADgAAAAAAAAMAAAAAAAAAAAAAAAAADAAAAAAAAA== version: 7 2,1: ind: 2,1 - tiles: BQAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAUAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAABQAAAAAAAAUAAAAAAAAAAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + tiles: DwAAAAAAAAAAAAAAAAAPAAAAAAAADAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA8AAAAAAAAAAAAAAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAEAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAADwAAAAAAAAAAAAAAAAACAAAAAAAADAAAAAAAAAAAAAAAAAAEAAAAAAAAAQAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAwAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAAAAAAAAAAkAAAAAAAABAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAAGAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAFAAAAAAAAAAAAAAAAAAYAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== version: 7 2,0: ind: 2,0 - tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAEAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABQAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAEAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAGAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAACQAAAAAAAAAAAAAAAAAJAAAAAAAACQAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAEAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAPAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAAAAAAAAAAAAJAAAAAAAAAQAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 1,3: + ind: 1,3 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAkAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAACQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAYAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAkAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAkAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 2,3: + ind: 2,3 + tiles: BgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 0,1: + ind: 0,1 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAYAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAA== + version: 7 + 0,0: + ind: 0,0 + tiles: AQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAQAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAAEAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAABAAAAAAAAA== version: 7 - type: Broadphase - type: Physics bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 fixedRotation: False bodyType: Dynamic - type: Fixtures @@ -75,482 +104,986 @@ entities: version: 2 nodes: - node: + angle: -3.141592653589793 rad color: '#FFFFFFFF' - id: Arrows + id: ArrowsGreyscale decals: - 275: 27,35 - 276: 27,32 - 277: 27,23 - 278: 27,18 - 279: 27,13 - 280: 26,7 - 281: 26,8 - 282: 28,8 - 283: 28,7 + 444: 34,20 + - node: + color: '#FA750096' + id: Bot + decals: + 450: 32,17 + 451: 34,17 - node: color: '#FFFFFFFF' id: Bot decals: - 255: 23,35 - 256: 21,34 - 257: 33,34 - 258: 31,30 - 259: 23,30 + 399: 25,14 + 745: 31,38 + 746: 31,39 + - node: + color: '#8D1C9996' + id: BotGreyscale + decals: + 663: 26,21 + 664: 28,21 + 665: 26,14 + 666: 28,14 + 667: 26,8 + 668: 28,8 + 669: 23,24 + 670: 22,24 + 741: 26,38 + 742: 28,38 + 743: 24,37 + 744: 23,37 + - node: + cleanable: True + color: '#8D1C9996' + id: BotGreyscale + decals: + 672: 22,33 + 673: 22,35 + 674: 22,29 + 675: 22,27 - node: color: '#FFFFFFFF' id: BotGreyscale decals: - 260: 31,18 - 261: 32,18 - 262: 32,20 - 263: 31,20 - 264: 25,15 - 265: 24,15 - 266: 29,15 - 267: 30,15 + 431: 32,14 + 432: 35,20 + 433: 35,19 + 434: 35,18 + 439: 32,16 + 440: 34,16 + 459: 21,25 + 464: 21,20 + 465: 21,19 + 624: 29,31 + 625: 28,22 + 626: 31,25 + 627: 31,26 + 628: 31,27 + 629: 31,28 + 630: 25,23 + 631: 25,22 + 632: 25,21 + 633: 25,27 + 634: 25,29 + 635: 25,33 + 636: 25,35 + 637: 29,25 + 638: 29,26 + 639: 29,27 + 640: 29,28 + 645: 29,30 + 646: 29,29 + 647: 29,24 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 268: 23,23 - 269: 23,24 - 270: 25,30 - 271: 29,30 - 273: 25,37 - 274: 29,37 + 395: 24,50 + 396: 30,50 - node: color: '#FFFFFFFF' - id: Delivery + id: BrickTileDarkBox decals: - 238: 34,20 - 239: 35,20 - 240: 35,19 - 241: 35,18 - 242: 34,18 - 243: 29,16 - 244: 30,16 - 245: 25,16 - 246: 24,16 - 249: 23,32 - 250: 31,32 - 251: 23,33 - 252: 31,33 + 701: 24,39 + 702: 30,39 - node: color: '#FFFFFFFF' - id: DeliveryGreyscale + id: BrickTileDarkCornerNe + decals: + 733: 31,40 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 698: 23,40 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 725: 31,38 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 700: 23,38 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndE + decals: + 421: 34,14 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndN + decals: + 412: 31,16 + 420: 35,16 + 427: 35,20 + 477: 24,16 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndS + decals: + 418: 31,14 + 422: 35,14 + 428: 35,18 + 479: 24,14 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndW + decals: + 419: 33,14 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 413: 31,15 + 423: 35,15 + 426: 35,19 + 429: 35,19 + 478: 24,15 + 732: 31,39 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 734: 30,40 + 735: 29,40 + 736: 28,40 + 737: 27,40 + 738: 26,40 + 739: 25,40 + 740: 24,40 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 724: 24,38 + 726: 25,38 + 727: 26,38 + 728: 27,38 + 729: 28,38 + 730: 29,38 + 731: 30,38 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW decals: - 106: 25,26 - 107: 25,27 - 108: 25,28 - 109: 29,26 - 111: 29,27 - 112: 29,28 - 247: 32,15 - 248: 31,14 - 253: 25,38 - 254: 29,38 + 414: 31,15 + 424: 35,15 + 425: 35,19 + 430: 35,19 + 480: 24,15 + 699: 23,39 - node: cleanable: True color: '#FFFFFFFF' - id: DirtHeavy + id: BrickTileSteelBox + decals: + 366: 27,9 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 354: 28,19 + 383: 28,10 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 346: 26,19 + 381: 26,10 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 359: 28,14 + 385: 28,8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 361: 26,14 + 379: 26,8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelEndN + decals: + 347: 27,18 + 394: 31,23 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelEndS + decals: + 350: 27,15 + 393: 31,22 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 351: 27,17 + 352: 27,16 + 355: 28,18 + 356: 28,17 + 357: 28,16 + 358: 28,15 + 384: 28,9 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 353: 27,19 + 382: 27,10 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 360: 27,14 + 386: 27,8 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 348: 27,17 + 349: 27,16 + 362: 26,15 + 363: 26,16 + 364: 26,17 + 365: 26,18 + 380: 26,9 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteBox + decals: + 599: 27,34 + 600: 27,22 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 523: 28,35 + 591: 30,32 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 215: 29,33 + 275: 28,32 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 500: 27,32 + 521: 26,35 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 559: 29,21 + 584: 30,22 + 662: 28,24 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 556: 26,21 + 596: 29,32 + 661: 27,24 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndE + decals: + 455: 23,24 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndN decals: - 1: 27,13 - 2: 26,14 - 3: 28,16 - 4: 28,14 - 5: 24,15 - 6: 23,16 - 7: 23,15 - 8: 25,15 - 9: 27,16 - 10: 30,16 - 11: 30,16 - 12: 27,14 - 13: 31,15 - 14: 31,16 - 15: 30,16 - 16: 27,17 - 17: 26,20 - 18: 27,21 - 19: 28,19 - 20: 27,18 - 21: 25,20 - 22: 27,20 - 23: 26,18 - 24: 33,18 - 25: 34,18 - 26: 35,19 - 27: 34,20 - 28: 33,20 - 29: 35,19 - 30: 34,19 - 31: 27,21 - 32: 26,22 - 33: 29,24 - 34: 27,24 - 35: 24,24 - 36: 25,29 - 37: 25,28 - 38: 22,24 - 39: 24,30 - 40: 28,30 - 41: 31,25 - 42: 30,23 - 43: 28,24 - 44: 30,28 - 45: 28,29 - 46: 28,31 - 47: 26,34 - 48: 26,35 - 49: 28,33 - 50: 27,35 - 51: 26,34 - 52: 28,33 - 53: 27,32 - 54: 27,34 - 55: 27,34 - 56: 27,33 - 57: 29,34 - 58: 30,34 - 59: 30,32 - 60: 30,33 - 61: 31,34 - 62: 24,32 - 63: 23,34 - 64: 23,34 - 65: 24,33 - 66: 25,34 - 67: 24,34 - 68: 24,37 - 69: 25,37 - 70: 28,37 - 71: 30,37 - 72: 30,37 - 73: 28,37 - 74: 27,38 - 75: 26,39 - 76: 27,39 - 77: 26,39 - 78: 26,38 - 79: 28,37 - 80: 27,37 - 81: 26,37 - 82: 28,39 - 83: 28,40 - 84: 31,38 - 85: 29,27 - 86: 29,25 - 87: 30,23 - 88: 30,26 - 89: 30,27 - 90: 26,23 - 91: 25,23 - 92: 24,23 - 93: 24,18 + 26: 25,29 + 27: 25,35 + 28: 31,28 + 29: 25,23 + 609: 29,31 + 644: 29,29 - node: - color: '#8D1C99ED' - id: GrayConcreteTrimCornerNe + color: '#FFFFFFFF' + id: BrickTileWhiteEndS decals: - 163: 31,30 - 198: 31,35 - 199: 24,35 + 30: 25,21 + 31: 31,25 + 32: 25,27 + 33: 25,33 + 616: 29,24 + 643: 29,30 - node: - color: '#8D1C99ED' - id: GrayConcreteTrimCornerNw + color: '#FFFFFFFF' + id: BrickTileWhiteEndW decals: - 164: 23,30 - 196: 23,35 - 197: 30,35 + 456: 21,24 - node: - color: '#8D1C99ED' - id: GrayConcreteTrimCornerSe + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNe decals: - 165: 31,23 - 193: 24,32 - 194: 31,32 + 528: 28,33 + 560: 26,23 + 592: 29,32 - node: - color: '#8D1C99ED' - id: GrayConcreteTrimCornerSw + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNw decals: - 162: 23,23 - 192: 23,32 - 195: 30,32 + 571: 30,23 - node: - color: '#8D1C99ED' - id: GrayConcreteTrimLineE + color: '#D4D4D428' + id: BrickTileWhiteInnerSe decals: - 145: 28,22 - 146: 28,21 - 147: 28,20 - 148: 28,19 - 149: 28,18 - 150: 28,17 - 151: 28,16 - 152: 28,15 - 153: 28,14 - 154: 28,13 - 178: 31,29 - 179: 31,28 - 180: 31,27 - 181: 31,26 - 182: 31,25 - 183: 31,24 - 184: 28,32 - 185: 28,33 - 186: 28,34 - 187: 28,35 - 204: 24,33 - 205: 24,34 - 206: 31,33 - 207: 31,34 - 208: 28,37 - 209: 28,38 - 210: 28,39 - 211: 28,40 - 284: 28,8 - 285: 28,9 - 286: 28,10 - 287: 28,11 + 586: 30,32 - node: - color: '#8D1C99ED' - id: GrayConcreteTrimLineN + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSe decals: - 171: 24,30 - 172: 25,30 - 173: 27,30 - 174: 26,30 - 175: 28,30 - 176: 29,30 - 177: 30,30 + 525: 26,33 + 585: 29,22 - node: - color: '#8D1C99ED' - id: GrayConcreteTrimLineS + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSw decals: - 155: 26,23 - 156: 27,23 - 157: 28,23 - 158: 29,23 - 159: 30,23 - 160: 25,23 - 161: 24,23 + 595: 30,32 - node: - color: '#8D1C99ED' - id: GrayConcreteTrimLineW + cleanable: True + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSw decals: - 130: 26,8 - 131: 26,9 - 132: 26,10 - 133: 26,11 - 134: 26,13 - 135: 26,14 - 136: 26,16 - 137: 26,15 - 138: 26,17 - 139: 26,18 - 140: 26,19 - 141: 26,20 - 142: 26,21 - 143: 26,22 - 166: 23,24 - 167: 23,25 - 168: 23,26 - 169: 23,28 - 170: 23,29 - 188: 26,32 - 189: 26,33 - 190: 26,34 - 191: 26,35 - 200: 23,34 - 201: 23,33 - 202: 30,33 - 203: 30,34 - 212: 26,37 - 213: 26,38 - 214: 26,39 - 215: 26,40 + 284: 29,33 - node: color: '#FFFFFFFF' - id: LoadingAreaGreyscale + id: BrickTileWhiteLineE decals: - 216: 26,6 - 217: 28,6 + 34: 25,28 + 35: 31,26 + 36: 31,27 + 40: 25,22 + 41: 25,34 + 524: 28,34 + 577: 30,29 + 578: 30,28 + 579: 30,27 + 580: 30,26 + 581: 30,25 + 582: 30,24 + 583: 30,23 + 597: 30,31 + 598: 30,30 + 617: 29,25 + 618: 29,26 + 619: 29,27 + 620: 29,28 + 648: 28,30 + 651: 28,28 + 652: 28,27 + 653: 28,26 + 654: 28,25 + 659: 28,29 - node: + cleanable: True color: '#FFFFFFFF' - id: WarnCornerNW + id: BrickTileWhiteLineE decals: - 236: 30,19 + 277: 28,31 + 304: 26,24 + 305: 26,25 + 306: 26,26 + 307: 26,27 + 308: 26,28 + 309: 26,29 + 310: 26,30 + 311: 26,31 + 312: 26,32 - node: color: '#FFFFFFFF' - id: WarnCornerSmallSE + id: BrickTileWhiteLineN decals: - 237: 30,19 + 458: 22,24 + 522: 27,35 + 561: 27,23 + 562: 28,23 + 563: 29,23 - node: color: '#FFFFFFFF' - id: WarnEndE + id: BrickTileWhiteLineS decals: - 231: 33,19 + 457: 22,24 + 526: 27,33 + 527: 28,33 + 557: 27,21 + 558: 28,21 - node: color: '#FFFFFFFF' - id: WarnEndS + id: BrickTileWhiteLineW decals: - 230: 30,18 + 37: 25,34 + 38: 25,28 + 39: 25,22 + 43: 31,26 + 44: 31,27 + 519: 26,33 + 520: 26,34 + 554: 26,23 + 555: 26,22 + 566: 30,29 + 567: 30,28 + 568: 30,27 + 569: 30,26 + 570: 30,25 + 572: 30,24 + 593: 30,30 + 594: 30,31 + 612: 29,28 + 613: 29,27 + 614: 29,26 + 615: 29,25 + 658: 27,29 - node: + cleanable: True color: '#FFFFFFFF' - id: WarnFull + id: BrickTileWhiteLineW + decals: + 187: 26,32 + 188: 26,31 + 189: 26,30 + 190: 26,29 + 191: 26,28 + 192: 26,27 + 193: 26,26 + 194: 26,25 + 195: 26,24 + 255: 27,31 + 256: 27,30 + 258: 27,28 + 259: 27,27 + 260: 27,26 + 261: 27,25 + - node: + cleanable: True + color: '#D4D4D428' + id: CheckerNESW + decals: + 368: 26,10 + 369: 28,8 + - node: + cleanable: True + color: '#D4D4D428' + id: CheckerNWSE + decals: + 367: 26,8 + 370: 28,10 + - node: + color: '#52B4E996' + id: DeliveryGreyscale + decals: + 460: 22,25 + 461: 23,25 + - node: + color: '#8D1C9996' + id: DeliveryGreyscale decals: - 288: 25,10 - 289: 29,10 - 290: 24,16 - 291: 25,16 - 292: 24,19 - 293: 24,20 - 294: 30,20 - 295: 24,35 - 296: 30,35 + 499: 27,32 + 501: 28,30 + 503: 28,28 + 504: 28,27 + 505: 28,26 + 506: 28,25 + 507: 28,24 + 656: 27,29 + 657: 28,29 + 660: 27,24 + 747: 24,39 + 748: 30,39 + 752: 27,34 + 753: 27,22 + - node: + cleanable: True + color: '#8D1C9996' + id: DeliveryGreyscale + decals: + 218: 27,25 + 223: 27,26 + 224: 27,27 + 229: 27,28 + 235: 27,30 + 236: 27,31 + 240: 28,32 + 241: 28,31 + - node: + color: '#D4D4D428' + id: DeliveryGreyscale + decals: + 468: 25,16 + 469: 25,14 + 471: 23,14 + 472: 23,15 + 473: 23,16 - node: color: '#FFFFFFFF' - id: WarnLineE + id: DeliveryGreyscale decals: - 222: 23,28 - 223: 23,27 - 224: 23,26 - 225: 23,25 + 435: 34,21 + 436: 35,21 + 462: 20,19 + 463: 20,20 + 749: 25,39 + 750: 27,39 + 751: 29,39 - node: + cleanable: True color: '#FFFFFFFF' - id: WarnLineN + id: DirtHeavy + decals: + 676: 26,16 + 677: 28,17 + 678: 26,19 + - node: + cleanable: True + color: '#FFFFFF9B' + id: DirtLight decals: - 232: 32,19 - 233: 31,19 + 680: 28,15 - node: + cleanable: True color: '#FFFFFFFF' - id: WarnLineS + id: DirtLight decals: - 218: 31,28 - 219: 31,27 - 220: 31,26 - 221: 31,25 + 679: 27,19 - node: + cleanable: True color: '#FFFFFFFF' - id: WarnLineW + id: DirtMedium + decals: + 681: 28,16 + 682: 27,10 + 683: 26,9 + 684: 28,10 + 685: 26,10 + 686: 28,9 + 687: 27,8 + 688: 34,17 + 689: 32,17 + 690: 21,19 + 691: 20,19 + 692: 20,20 + 693: 21,20 + - node: + color: '#8D1C9996' + id: HalfTileOverlayGreyscale + decals: + 710: 24,40 + 711: 25,40 + 712: 26,40 + 713: 27,40 + 714: 28,40 + 715: 29,40 + 716: 30,40 + - node: + color: '#8D1C9996' + id: HalfTileOverlayGreyscale180 + decals: + 703: 24,38 + 704: 25,38 + 705: 26,38 + 706: 27,38 + 707: 29,38 + 708: 28,38 + 709: 30,38 + - node: + cleanable: True + color: '#D4D4D428' + id: HalfTileOverlayGreyscale270 + decals: + 325: 26,9 + 326: 26,15 + 327: 26,16 + 328: 26,17 + 329: 26,18 + - node: + color: '#8D1C9996' + id: HalfTileOverlayGreyscale90 + decals: + 717: 31,39 + - node: + cleanable: True + color: '#D4D4D428' + id: HalfTileOverlayGreyscale90 + decals: + 320: 28,15 + 321: 28,16 + 322: 28,17 + 323: 28,18 + 324: 28,9 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#D4D4D433' + id: MarkupSquare + decals: + 153: 29,33 + 159: 26,32 + 160: 26,31 + 161: 26,30 + 162: 26,29 + 163: 26,28 + 164: 26,27 + 165: 26,26 + 166: 26,25 + 167: 26,24 + - node: + color: '#D4D4D428' + id: MonoOverlay + decals: + 510: 26,33 + 511: 26,34 + 512: 26,35 + 513: 27,35 + 514: 28,35 + 515: 28,33 + 516: 27,33 + 518: 28,34 + 534: 30,29 + 535: 30,28 + 536: 30,27 + 537: 30,26 + 538: 30,24 + 539: 30,25 + 540: 30,23 + 541: 30,22 + 542: 26,23 + 543: 27,23 + 544: 28,23 + 545: 29,23 + 546: 29,22 + 547: 29,21 + 548: 28,21 + 549: 27,21 + 550: 26,21 + 551: 26,22 + 553: 28,22 + 587: 30,30 + 588: 30,31 + 589: 30,32 + 590: 29,32 + - node: + color: '#52B4E996' + id: OffsetOverlay + decals: + 452: 21,24 + 453: 22,24 + 454: 23,24 + - node: + color: '#79150096' + id: OffsetOverlay + decals: + 474: 24,14 + 475: 24,15 + 476: 24,16 + - node: + color: '#8D1C9996' + id: OffsetOverlay + decals: + 13: 25,33 + 14: 25,34 + 15: 25,35 + 16: 31,28 + 17: 31,27 + 18: 31,26 + 19: 31,25 + 20: 25,21 + 21: 25,22 + 22: 25,23 + 23: 25,27 + 24: 25,28 + 25: 25,29 + 601: 29,31 + 604: 29,28 + 605: 29,27 + 606: 29,26 + 607: 29,25 + 608: 29,24 + 641: 29,30 + 642: 29,29 + - node: + color: '#FA750096' + id: OffsetOverlay + decals: + 400: 31,16 + 401: 31,15 + 404: 33,14 + 405: 34,14 + 406: 35,14 + 407: 35,15 + 408: 35,16 + 409: 35,20 + 410: 35,19 + 411: 35,18 + 417: 31,14 + - node: + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale + decals: + 696: 23,39 + 718: 31,40 + - node: + cleanable: True + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 338: 26,14 + 342: 26,19 + 343: 27,19 + 344: 28,19 + 371: 26,10 + 372: 27,10 + - node: + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale180 + decals: + 719: 31,38 + 720: 31,40 + - node: + cleanable: True + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + decals: + 339: 26,14 + 340: 27,14 + 341: 28,14 + 345: 28,19 + 373: 27,8 + 374: 28,8 + - node: + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale270 + decals: + 697: 23,39 + 721: 31,38 + - node: + cleanable: True + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + decals: + 330: 26,19 + 331: 26,14 + 332: 27,14 + 333: 28,14 + 377: 27,8 + 378: 26,8 + - node: + color: '#8D1C9996' + id: QuarterTileOverlayGreyscale90 + decals: + 722: 31,38 + 723: 31,40 + - node: + cleanable: True + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale90 + decals: + 334: 26,19 + 335: 27,19 + 336: 28,19 + 337: 28,14 + 375: 27,10 + 376: 28,10 + - node: + color: '#8D1C9996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 695: 23,40 + - node: + color: '#8D1C9996' + id: ThreeQuarterTileOverlayGreyscale270 decals: - 226: 23,22 - 227: 24,22 - 228: 30,22 - 229: 31,22 - 234: 32,19 - 235: 31,19 + 694: 23,38 - type: GridAtmosphere version: 2 data: tiles: - 7,8: - 0: 56797 8,8: - 0: 8960 - 7,9: - 0: 8177 - 8,9: - 1: 4612 + 0: 4369 + 1: 16452 8,7: - 1: 16992 - 5,7: - 1: 4656 - 0: 2184 - 5,8: - 0: 44680 + 0: 4352 + 2: 4 + 1: 1088 + 7,8: + 0: 56831 + 8,9: + 0: 1 + 1: 2564 + 2: 57344 + 7,9: + 0: 65309 + 8,10: + 2: 60138 + 7,10: + 0: 3087 + 1: 256 + 8,11: + 0: 2 + 1: 4392 + 7,11: + 2: 17416 + 1: 2 + 8,12: + 1: 1 + 4,9: + 1: 2048 + 2: 32768 + 4,10: + 2: 34952 5,9: - 1: 16897 - 0: 2176 - 6,8: - 0: 56797 - 6,9: - 0: 53244 + 2: 12288 + 1: 513 + 0: 34944 5,10: + 2: 12850 + 0: 2056 + 4,11: 1: 8 + 5,8: + 1: 4113 + 0: 52424 + 5,11: + 1: 17442 + 2: 8 + 5,7: + 0: 51404 + 1: 273 + 5,12: + 1: 132 + 6,9: + 0: 65500 6,10: - 1: 33 - 0: 12 + 0: 271 + 1: 1024 + 6,11: + 2: 4352 + 1: 2 6,7: - 0: 57343 - 7,10: - 0: 1 - 1: 44 + 0: 64750 + 6,8: + 0: 61164 + 6,12: + 2: 17 + 1: 256 7,7: - 0: 24575 + 0: 65407 + 7,12: + 2: 68 + 1: 1152 4,4: - 1: 8 - 0: 34816 + 2: 8995 + 0: 34952 + 3,4: + 2: 34952 4,5: - 1: 2112 + 2: 259 + 1: 8224 0: 8 + 3,5: + 2: 2184 + 1: 32768 4,3: - 1: 35008 + 1: 8232 + 0: 34816 + 2: 256 + 4,6: + 1: 2052 5,4: - 1: 1 - 0: 65294 + 0: 65339 5,5: - 0: 34831 - 1: 8192 + 0: 2047 5,3: - 1: 4368 - 0: 51208 + 0: 47872 + 1: 5 5,6: - 1: 12803 - 0: 34952 + 0: 49390 6,4: - 0: 57295 - 6,5: - 0: 64973 + 0: 65487 6,6: - 0: 65535 + 0: 60668 6,3: - 0: 65516 + 0: 57308 + 6,5: + 0: 61164 7,4: - 0: 57119 + 0: 65305 7,5: - 0: 64797 + 0: 65465 7,6: - 0: 65535 + 0: 65527 7,3: - 0: 65337 + 0: 47889 8,4: - 0: 65283 - 1: 12 - 8,5: - 0: 15 - 1: 10240 - 4,1: - 1: 32768 + 0: 65407 + 3,3: + 2: 34944 + 1: 8 4,2: - 1: 136 - 5,1: - 1: 61440 + 1: 1152 + 2: 34816 5,2: - 1: 250 - 6,2: - 0: 52941 + 2: 39184 + 1: 138 + 5,1: + 1: 32768 6,1: - 1: 16 - 0: 19520 + 1: 18 + 0: 52428 + 6,2: + 0: 52974 7,1: - 0: 4368 - 1: 32832 + 0: 4369 + 1: 32834 7,2: - 0: 4885 + 0: 4915 1: 136 - 8,1: - 1: 61440 - 8,2: - 1: 250 + 2: 34816 8,3: - 0: 4096 - 1: 52416 + 1: 13 + 0: 65280 + 8,5: + 0: 238 + 2: 57344 8,6: - 1: 25094 + 2: 28398 9,5: - 1: 16 + 2: 15502 + 1: 32800 + 9,6: + 2: 1 + 9,4: + 2: 44718 9,3: - 1: 16 + 1: 8232 + 2: 35968 + 8,2: + 1: 130 + 2: 52288 + 9,2: + 1: 256 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -567,6 +1100,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 immutable: True moles: @@ -587,6865 +1135,10661 @@ entities: - type: RadiationGridResistance - type: BecomesStation id: Serpent -- proto: AirAlarm + - type: ImplicitRoof +- proto: ADTSalvageAirlockGlass entities: - - uid: 751 + - uid: 840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,6.5 + rot: 3.141592653589793 rad + pos: 30.5,19.5 parent: 1 - - type: DeviceList - devices: - - 764 - - 415 - - 416 - - 417 - - 418 - - 419 - - 765 - - uid: 752 + - uid: 960 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,13.5 + rot: 3.141592653589793 rad + pos: 30.5,18.5 parent: 1 - - type: DeviceList - devices: - - 411 - - 763 - - 412 - - 410 - - 415 - - 416 - - 417 - - uid: 753 +- proto: AirAlarm + entities: + - uid: 1005 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,21.5 + rot: -1.5707963267948966 rad + pos: 29.5,16.5 parent: 1 - - type: DeviceList - devices: - - 760 - - 414 - - 762 - - 761 - - 410 - - 411 - - 412 - - 461 - - 460 - - 462 - - uid: 754 + - uid: 1191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,23.5 + rot: -1.5707963267948966 rad + pos: 29.5,11.5 parent: 1 - type: DeviceList devices: - - 757 - - 402 - - 403 - - 404 - - 405 - - 406 - - 460 - - 461 - - 462 - - uid: 755 + - 1246 + - 1276 + - 1232 + - 1247 + - 1277 + - 1234 + - 1248 + - 1278 + - 1233 + - 728 + - 729 + - 730 + - 701 + - uid: 1497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,33.5 + rot: -1.5707963267948966 rad + pos: 29.5,36.5 parent: 1 - type: DeviceList devices: - - 404 - - 403 - - 758 - - 405 - - 402 - - 406 - - uid: 756 + - 1383 + - 814 + - 1384 + - 886 + - 885 + - 838 + - 933 + - 888 + - 733 + - 732 + - 731 + - 1385 + - 1382 +- proto: AirlockEngineering + entities: + - uid: 1380 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,36.5 + pos: 24.5,18.5 parent: 1 - - type: DeviceList - devices: - - 409 - - 408 - - 407 - - 759 -- proto: AirCanister - entities: - - uid: 554 + - uid: 1381 components: - type: Transform - pos: 34.5,18.5 + pos: 24.5,19.5 parent: 1 -- proto: AirlockCommandGlass +- proto: AirlockExternal entities: - - uid: 1023 + - uid: 1279 components: - type: Transform - pos: 26.5,36.5 + rot: 3.141592653589793 rad + pos: 26.5,6.5 parent: 1 - - uid: 1024 + - uid: 1280 components: - type: Transform - pos: 27.5,36.5 + rot: 3.141592653589793 rad + pos: 27.5,6.5 parent: 1 - - uid: 1025 + - uid: 1281 components: - type: Transform - pos: 28.5,36.5 + rot: 3.141592653589793 rad + pos: 28.5,6.5 parent: 1 -- proto: AirlockEngineeringGlass +- proto: AirlockGlassShuttle entities: - - uid: 1026 + - uid: 73 components: - type: Transform - pos: 25.5,18.5 + rot: 1.5707963267948966 rad + pos: 34.5,29.5 parent: 1 - - uid: 1027 + - uid: 689 components: - type: Transform - pos: 29.5,18.5 + pos: 26.5,4.5 parent: 1 -- proto: AirlockExternal - entities: - - uid: 463 + - uid: 690 components: - type: Transform - pos: 21.5,16.5 + pos: 27.5,4.5 parent: 1 - - uid: 464 + - uid: 691 components: - type: Transform - pos: 33.5,16.5 + pos: 28.5,4.5 parent: 1 - - uid: 465 + - uid: 692 components: - type: Transform - pos: 24.5,8.5 + rot: 1.5707963267948966 rad + pos: 34.5,28.5 parent: 1 - - uid: 466 +- proto: AirlockHatchMaintenance + entities: + - uid: 914 components: - type: Transform - pos: 30.5,8.5 + rot: -1.5707963267948966 rad + pos: 31.5,20.5 parent: 1 -- proto: AirlockGlassShuttleSyndicate +- proto: AirlockMedicalGlass entities: - - uid: 215 + - uid: 1116 components: - type: Transform - pos: 28.5,5.5 + rot: -1.5707963267948966 rad + pos: 24.5,25.5 parent: 1 - - uid: 219 +- proto: AirlockScience + entities: + - uid: 1134 components: - type: Transform - pos: 26.5,5.5 + rot: -1.5707963267948966 rad + pos: 23.5,30.5 + parent: 1 + - uid: 1135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,32.5 + parent: 1 + - uid: 1183 + components: + - type: Transform + pos: 25.5,16.5 parent: 1 - proto: AirlockScienceGlass entities: - - uid: 603 + - uid: 1184 components: - type: Transform - pos: 22.5,34.5 + pos: 26.5,12.5 parent: 1 - - uid: 604 + - uid: 1185 components: - type: Transform - pos: 32.5,34.5 + pos: 27.5,12.5 parent: 1 - - uid: 973 + - uid: 1186 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,31.5 + pos: 28.5,12.5 parent: 1 - - uid: 974 + - uid: 1187 components: - type: Transform - pos: 28.5,31.5 + pos: 26.5,20.5 parent: 1 - - uid: 975 + - uid: 1188 components: - type: Transform - pos: 27.5,31.5 + pos: 27.5,20.5 parent: 1 - - uid: 976 + - uid: 1189 components: - type: Transform - pos: 26.5,31.5 + pos: 28.5,20.5 parent: 1 - - uid: 977 + - uid: 1643 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,31.5 + pos: 28.5,37.5 parent: 1 - - uid: 978 + - uid: 1644 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,22.5 + pos: 27.5,37.5 parent: 1 - - uid: 979 + - uid: 1645 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,22.5 + pos: 26.5,37.5 parent: 1 - - uid: 980 + - uid: 1646 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,22.5 + pos: 25.5,31.5 parent: 1 - - uid: 981 +- proto: AirSensor + entities: + - uid: 814 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,17.5 + rot: -1.5707963267948966 rad + pos: 27.5,21.5 parent: 1 - - uid: 982 + - type: DeviceNetwork + deviceLists: + - 1497 + - uid: 1276 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,17.5 + pos: 27.5,14.5 parent: 1 - - uid: 983 + - type: DeviceNetwork + deviceLists: + - 1191 + - uid: 1277 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,17.5 + pos: 27.5,8.5 parent: 1 - - uid: 984 + - type: DeviceNetwork + deviceLists: + - 1191 + - uid: 1278 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,12.5 + pos: 27.5,5.5 parent: 1 - - uid: 985 + - type: DeviceNetwork + deviceLists: + - 1191 +- proto: AmeController + entities: + - uid: 883 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,12.5 + pos: 20.5,18.5 parent: 1 - - uid: 986 + - type: AmeController + injectionAmount: 4 + injecting: True + - type: ContainerContainer + containers: + fuelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 940 + - type: ActiveUserInterface +- proto: AmeJar + entities: + - uid: 940 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,12.5 - parent: 1 - - uid: 987 + parent: 883 + - type: Physics + canCollide: False + - uid: 1139 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,7.5 + parent: 1138 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1140 + components: + - type: Transform + parent: 1138 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: AmeShielding + entities: + - uid: 7 + components: + - type: Transform + pos: 21.5,14.5 parent: 1 - - uid: 988 + - uid: 167 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,7.5 + pos: 19.5,15.5 parent: 1 -- proto: AirSensor - entities: - - uid: 757 + - uid: 339 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,23.5 + pos: 21.5,17.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 754 - - uid: 758 + - uid: 382 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,32.5 + pos: 19.5,16.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 755 - - uid: 759 + - uid: 384 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,37.5 + pos: 19.5,14.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 756 - - uid: 760 + - uid: 449 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,18.5 + pos: 19.5,17.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 753 - - uid: 761 + - uid: 450 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,18.5 + pos: 20.5,16.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 753 - - uid: 762 + - type: PointLight + radius: 2 + enabled: True + - uid: 547 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,18.5 + pos: 20.5,17.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 753 - - uid: 763 + - uid: 549 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,16.5 + pos: 20.5,14.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 752 - - uid: 764 + - uid: 570 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,11.5 + pos: 20.5,15.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 751 - - uid: 765 + - type: PointLight + radius: 2 + enabled: True + - uid: 571 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,6.5 + pos: 21.5,15.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 751 -- proto: AmeController - entities: - - uid: 382 + - uid: 921 components: - type: Transform - pos: 24.5,19.5 + rot: 3.141592653589793 rad + pos: 21.5,16.5 parent: 1 -- proto: AmeShielding +- proto: AmmoLoaderSmall entities: - - uid: 357 + - uid: 1723 components: - type: Transform - pos: 20.5,20.5 + pos: 22.5,18.5 parent: 1 - - uid: 358 + - type: ContainerContainer + containers: + ammo_loader: !type:Container + showEnts: False + occludes: True + ents: + - 1724 + - type: DeviceLinkSource + linkedPorts: + 1722: + - - AmmoLoaderLoad + - SpaceArtilleryLoad +- proto: APCBasic + entities: + - uid: 1004 components: - type: Transform - pos: 20.5,18.5 + rot: -1.5707963267948966 rad + pos: 29.5,17.5 parent: 1 - - uid: 359 + - uid: 1190 components: - type: Transform - pos: 20.5,19.5 + rot: 1.5707963267948966 rad + pos: 25.5,11.5 parent: 1 - - uid: 360 + - uid: 1293 components: - type: Transform - pos: 19.5,20.5 + rot: 3.141592653589793 rad + pos: 23.5,17.5 parent: 1 - - uid: 361 + - uid: 1495 components: - type: Transform - pos: 21.5,18.5 + rot: 3.141592653589793 rad + pos: 30.5,21.5 parent: 1 - - uid: 362 + - uid: 1496 components: - type: Transform - pos: 21.5,20.5 + rot: 1.5707963267948966 rad + pos: 25.5,36.5 parent: 1 - - uid: 363 +- proto: APCElectronics + entities: + - uid: 1379 components: - type: Transform - pos: 19.5,19.5 + pos: 20.28406,21.232628 parent: 1 - - uid: 364 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 684 components: - type: Transform - pos: 21.5,19.5 + rot: 3.141592653589793 rad + pos: 34.5,22.5 parent: 1 - - uid: 365 + - uid: 685 components: - type: Transform - pos: 22.5,18.5 + rot: 3.141592653589793 rad + pos: 35.5,22.5 parent: 1 - - uid: 366 + - uid: 686 components: - type: Transform - pos: 23.5,18.5 + pos: 26.5,4.5 parent: 1 - - uid: 367 + - uid: 687 components: - type: Transform - pos: 22.5,20.5 + pos: 27.5,4.5 parent: 1 - - uid: 368 + - uid: 688 components: - type: Transform - pos: 22.5,19.5 + pos: 28.5,4.5 parent: 1 - - uid: 370 + - uid: 735 components: - type: Transform - pos: 23.5,19.5 + pos: 23.5,30.5 parent: 1 - - uid: 371 + - uid: 736 components: - type: Transform - pos: 23.5,20.5 + rot: 3.141592653589793 rad + pos: 23.5,32.5 parent: 1 - - uid: 372 +- proto: AtmosFixBlockerMarker + entities: + - uid: 16 components: - type: Transform - pos: 19.5,18.5 + pos: 34.5,28.5 parent: 1 -- proto: APCBasic - entities: - - uid: 745 + - uid: 26 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,23.5 + pos: 22.5,12.5 parent: 1 - - uid: 746 + - uid: 37 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,33.5 + pos: 22.5,48.5 parent: 1 - - uid: 747 + - uid: 42 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,36.5 + pos: 20.5,29.5 parent: 1 - - uid: 748 + - uid: 44 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,21.5 + pos: 20.5,30.5 parent: 1 - - uid: 749 + - uid: 64 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,13.5 + pos: 34.5,33.5 parent: 1 - - uid: 750 + - uid: 94 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,6.5 + pos: 15.5,13.5 parent: 1 -- proto: AtmosDeviceFanDirectional - entities: - - uid: 383 + - uid: 96 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,8.5 + pos: 16.5,22.5 parent: 1 - - uid: 384 + - uid: 97 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,8.5 + pos: 15.5,22.5 parent: 1 - - uid: 385 + - uid: 114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,16.5 + pos: 18.5,24.5 parent: 1 - - uid: 386 + - uid: 160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,16.5 + pos: 20.5,28.5 parent: 1 - - uid: 388 + - uid: 198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,34.5 + pos: 39.5,23.5 parent: 1 - - uid: 391 + - uid: 207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,34.5 + pos: 39.5,12.5 parent: 1 - - uid: 484 + - uid: 209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,34.5 + pos: 34.5,30.5 parent: 1 - - uid: 485 + - uid: 233 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,34.5 + pos: 15.5,23.5 parent: 1 -- proto: AtmosFixBlockerMarker - entities: - - uid: 29 + - uid: 245 components: - type: Transform - pos: 35.5,15.5 + pos: 15.5,14.5 parent: 1 - - uid: 30 + - uid: 270 components: - type: Transform - pos: 36.5,21.5 + pos: 15.5,12.5 parent: 1 - - uid: 32 + - uid: 275 components: - type: Transform - pos: 20.5,15.5 + pos: 39.5,21.5 parent: 1 - - uid: 35 + - uid: 284 components: - type: Transform - pos: 20.5,14.5 + pos: 39.5,16.5 parent: 1 - - uid: 41 + - uid: 299 components: - type: Transform - pos: 20.5,13.5 + pos: 20.5,35.5 parent: 1 - - uid: 43 + - uid: 302 components: - type: Transform - pos: 34.5,16.5 + pos: 39.5,13.5 parent: 1 - - uid: 46 + - uid: 303 components: - type: Transform - pos: 36.5,13.5 + pos: 34.5,29.5 parent: 1 - - uid: 50 + - uid: 305 components: - type: Transform - pos: 34.5,15.5 + pos: 34.5,32.5 parent: 1 - - uid: 53 + - uid: 307 components: - type: Transform - pos: 34.5,14.5 + pos: 34.5,35.5 parent: 1 - - uid: 55 + - uid: 312 components: - type: Transform - pos: 35.5,13.5 + pos: 39.5,14.5 parent: 1 - - uid: 57 + - uid: 325 components: - type: Transform - pos: 34.5,13.5 + pos: 38.5,22.5 parent: 1 - - uid: 59 + - uid: 335 components: - type: Transform - pos: 35.5,16.5 + pos: 21.5,45.5 parent: 1 - - uid: 61 + - uid: 337 components: - type: Transform - pos: 35.5,14.5 + pos: 19.5,44.5 parent: 1 - - uid: 154 + - uid: 338 components: - type: Transform - pos: 33.5,38.5 + pos: 20.5,32.5 parent: 1 - - uid: 156 + - uid: 344 components: - type: Transform - pos: 34.5,36.5 + pos: 20.5,33.5 parent: 1 - - uid: 158 + - uid: 371 components: - type: Transform - pos: 33.5,29.5 + pos: 32.5,48.5 parent: 1 - - uid: 160 + - uid: 390 components: - type: Transform - pos: 34.5,29.5 + pos: 25.5,44.5 parent: 1 - - uid: 162 + - uid: 391 components: - type: Transform - pos: 34.5,31.5 + pos: 26.5,42.5 parent: 1 - - uid: 164 + - uid: 392 components: - type: Transform - pos: 33.5,30.5 + pos: 28.5,42.5 parent: 1 - - uid: 166 + - uid: 393 components: - type: Transform - pos: 33.5,26.5 + pos: 29.5,44.5 parent: 1 - - uid: 167 + - uid: 397 components: - type: Transform - pos: 30.5,40.5 + pos: 30.5,50.5 parent: 1 - - uid: 168 + - uid: 398 components: - type: Transform - pos: 34.5,24.5 + pos: 23.5,49.5 parent: 1 - - uid: 170 + - uid: 399 components: - type: Transform - pos: 34.5,27.5 + pos: 39.5,22.5 parent: 1 - - uid: 172 + - uid: 400 components: - type: Transform - pos: 33.5,27.5 + pos: 33.5,45.5 parent: 1 - - uid: 173 + - uid: 401 components: - type: Transform - pos: 24.5,40.5 + pos: 21.5,43.5 parent: 1 - - uid: 174 + - uid: 402 components: - type: Transform - pos: 33.5,24.5 + pos: 21.5,42.5 parent: 1 - - uid: 175 + - uid: 403 components: - type: Transform - pos: 25.5,41.5 + pos: 21.5,41.5 parent: 1 - - uid: 176 + - uid: 404 components: - type: Transform - pos: 33.5,23.5 + pos: 21.5,40.5 parent: 1 - - uid: 178 + - uid: 405 components: - type: Transform - pos: 29.5,41.5 + pos: 21.5,39.5 parent: 1 - - uid: 179 + - uid: 406 components: - type: Transform - pos: 35.5,22.5 + pos: 21.5,38.5 parent: 1 - - uid: 180 + - uid: 407 components: - type: Transform - pos: 31.5,40.5 + pos: 19.5,38.5 parent: 1 - - uid: 181 + - uid: 408 components: - type: Transform - pos: 32.5,39.5 + pos: 19.5,39.5 parent: 1 - - uid: 272 + - uid: 409 components: - type: Transform - pos: 20.5,16.5 + pos: 19.5,40.5 parent: 1 - - uid: 273 + - uid: 410 components: - type: Transform - pos: 19.5,13.5 + pos: 19.5,41.5 parent: 1 - - uid: 274 + - uid: 411 components: - type: Transform - pos: 19.5,14.5 + pos: 19.5,42.5 parent: 1 - - uid: 275 + - uid: 412 components: - type: Transform - pos: 19.5,15.5 + pos: 19.5,43.5 parent: 1 - - uid: 276 + - uid: 413 components: - type: Transform - pos: 19.5,16.5 + pos: 20.5,43.5 parent: 1 - - uid: 277 + - uid: 414 components: - type: Transform - pos: 18.5,13.5 + pos: 20.5,41.5 parent: 1 - - uid: 278 + - uid: 415 components: - type: Transform - pos: 18.5,21.5 + pos: 20.5,39.5 parent: 1 - - uid: 279 + - uid: 416 components: - type: Transform - pos: 19.5,22.5 + pos: 35.5,44.5 parent: 1 - - uid: 280 + - uid: 417 components: - type: Transform - pos: 21.5,23.5 + pos: 35.5,43.5 parent: 1 - - uid: 281 + - uid: 418 components: - type: Transform - pos: 21.5,24.5 + pos: 35.5,42.5 parent: 1 - - uid: 282 + - uid: 419 components: - type: Transform - pos: 20.5,24.5 + pos: 35.5,41.5 parent: 1 - - uid: 283 + - uid: 420 components: - type: Transform - pos: 21.5,26.5 + pos: 35.5,40.5 parent: 1 - - uid: 284 + - uid: 421 components: - type: Transform - pos: 21.5,27.5 + pos: 35.5,39.5 parent: 1 - - uid: 285 + - uid: 422 components: - type: Transform - pos: 20.5,27.5 + pos: 35.5,38.5 parent: 1 - - uid: 286 + - uid: 423 components: - type: Transform - pos: 20.5,29.5 + pos: 34.5,39.5 parent: 1 - - uid: 287 + - uid: 424 components: - type: Transform - pos: 21.5,29.5 + pos: 34.5,41.5 parent: 1 - - uid: 288 + - uid: 425 components: - type: Transform - pos: 21.5,30.5 + pos: 34.5,43.5 parent: 1 - - uid: 289 + - uid: 426 components: - type: Transform - pos: 20.5,31.5 + pos: 33.5,38.5 parent: 1 - - uid: 290 + - uid: 427 components: - type: Transform - pos: 20.5,36.5 + pos: 33.5,39.5 parent: 1 - - uid: 291 + - uid: 428 components: - type: Transform - pos: 21.5,38.5 + pos: 33.5,40.5 parent: 1 - - uid: 292 + - uid: 429 components: - type: Transform - pos: 22.5,39.5 + pos: 33.5,41.5 parent: 1 - - uid: 293 + - uid: 430 components: - type: Transform - pos: 23.5,40.5 + pos: 33.5,42.5 parent: 1 - - uid: 294 + - uid: 431 components: - type: Transform - pos: 35.5,7.5 + pos: 33.5,43.5 parent: 1 - - uid: 295 + - uid: 432 components: - type: Transform - pos: 34.5,7.5 + pos: 31.5,44.5 parent: 1 - - uid: 296 + - uid: 433 components: - type: Transform - pos: 33.5,7.5 + pos: 23.5,44.5 parent: 1 - - uid: 297 + - uid: 434 components: - type: Transform - pos: 32.5,7.5 + pos: 32.5,46.5 parent: 1 - - uid: 298 + - uid: 435 components: - type: Transform - pos: 31.5,7.5 + pos: 32.5,47.5 parent: 1 - - uid: 299 + - uid: 436 components: - type: Transform - pos: 31.5,8.5 + pos: 30.5,48.5 parent: 1 - - uid: 300 + - uid: 437 components: - type: Transform - pos: 31.5,9.5 + pos: 24.5,50.5 parent: 1 - - uid: 301 + - uid: 438 components: - type: Transform - pos: 32.5,9.5 + pos: 34.5,36.5 parent: 1 - - uid: 302 + - uid: 441 components: - type: Transform - pos: 33.5,9.5 + pos: 17.5,23.5 parent: 1 - - uid: 303 + - uid: 456 components: - type: Transform - pos: 34.5,9.5 + pos: 33.5,27.5 parent: 1 - - uid: 305 + - uid: 457 components: - type: Transform - pos: 35.5,8.5 + pos: 33.5,26.5 parent: 1 - - uid: 306 + - uid: 458 components: - type: Transform - pos: 33.5,8.5 + pos: 33.5,25.5 parent: 1 - - uid: 307 + - uid: 459 components: - type: Transform - pos: 23.5,7.5 + pos: 33.5,24.5 parent: 1 - - uid: 308 + - uid: 460 components: - type: Transform - pos: 22.5,7.5 + pos: 33.5,23.5 parent: 1 - - uid: 309 + - uid: 461 components: - type: Transform - pos: 21.5,7.5 + pos: 34.5,27.5 parent: 1 - - uid: 310 + - uid: 462 components: - type: Transform - pos: 20.5,7.5 + pos: 34.5,26.5 parent: 1 - - uid: 311 + - uid: 463 components: - type: Transform - pos: 19.5,7.5 + pos: 34.5,25.5 parent: 1 - - uid: 312 + - uid: 464 components: - type: Transform - pos: 19.5,8.5 + pos: 34.5,24.5 parent: 1 - - uid: 313 + - uid: 465 components: - type: Transform - pos: 19.5,9.5 + pos: 34.5,23.5 parent: 1 - - uid: 314 + - uid: 466 components: - type: Transform - pos: 20.5,9.5 + pos: 35.5,26.5 parent: 1 - - uid: 315 + - uid: 467 components: - type: Transform - pos: 21.5,9.5 + pos: 35.5,25.5 parent: 1 - - uid: 316 + - uid: 468 components: - type: Transform - pos: 22.5,9.5 + pos: 35.5,24.5 parent: 1 - - uid: 317 + - uid: 469 components: - type: Transform - pos: 23.5,9.5 + pos: 35.5,23.5 parent: 1 - - uid: 318 + - uid: 471 components: - type: Transform - pos: 23.5,8.5 + pos: 36.5,24.5 parent: 1 - - uid: 319 + - uid: 472 components: - type: Transform - pos: 21.5,8.5 + pos: 36.5,23.5 parent: 1 - - uid: 337 + - uid: 475 components: - type: Transform - pos: 35.5,9.5 + pos: 37.5,21.5 parent: 1 -- proto: Autolathe - entities: - - uid: 490 + - uid: 476 components: - type: Transform - pos: 23.5,25.5 + pos: 37.5,20.5 parent: 1 -- proto: BannerScience - entities: - - uid: 508 + - uid: 477 components: - type: Transform - pos: 29.5,13.5 + pos: 37.5,19.5 parent: 1 - - uid: 531 + - uid: 479 components: - type: Transform - pos: 25.5,13.5 + pos: 37.5,17.5 parent: 1 - - uid: 1034 + - uid: 480 components: - type: Transform - pos: 25.5,30.5 + pos: 37.5,16.5 parent: 1 - - uid: 1035 + - uid: 481 components: - type: Transform - pos: 29.5,30.5 + pos: 37.5,15.5 parent: 1 -- proto: BenchSofaCorpCorner - entities: - - uid: 1121 + - uid: 483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,23.5 + pos: 39.5,20.5 parent: 1 -- proto: BenchSofaCorpLeft - entities: - - uid: 1119 + - uid: 484 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,23.5 + pos: 39.5,19.5 parent: 1 -- proto: BenchSofaCorpMiddle - entities: - - uid: 1118 + - uid: 485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,23.5 + pos: 39.5,18.5 parent: 1 -- proto: BenchSofaCorpRight - entities: - - uid: 1120 + - uid: 486 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,24.5 + pos: 39.5,17.5 parent: 1 -- proto: BlastDoor - entities: - - uid: 486 + - uid: 488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,34.5 + pos: 39.5,15.5 parent: 1 - - uid: 487 + - uid: 489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,34.5 + pos: 38.5,20.5 parent: 1 - - uid: 567 + - uid: 490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,8.5 + pos: 38.5,18.5 parent: 1 - - uid: 568 + - uid: 491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,8.5 + pos: 38.5,16.5 parent: 1 -- proto: BlueprintLithograph - entities: - - uid: 518 + - uid: 492 components: - type: Transform - pos: 31.5,26.5 + pos: 37.5,13.5 parent: 1 -- proto: BorgCharger - entities: - - uid: 506 + - uid: 493 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,30.5 + pos: 34.5,12.5 parent: 1 - - uid: 507 + - uid: 494 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,30.5 + pos: 34.5,11.5 parent: 1 -- proto: ButtonFrameCaution - entities: - - uid: 138 + - uid: 495 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,33.5 + pos: 34.5,10.5 parent: 1 - - uid: 469 + - uid: 496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,9.5 + pos: 34.5,9.5 parent: 1 - - uid: 470 + - uid: 497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,9.5 + pos: 35.5,12.5 parent: 1 - - uid: 474 + - uid: 498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,33.5 + pos: 35.5,11.5 parent: 1 -- proto: CableApcExtension - entities: - - uid: 819 + - uid: 499 components: - type: Transform - pos: 29.5,36.5 + pos: 35.5,10.5 parent: 1 - - uid: 820 + - uid: 500 components: - type: Transform - pos: 28.5,36.5 + pos: 35.5,9.5 parent: 1 - - uid: 821 + - uid: 501 components: - type: Transform - pos: 27.5,36.5 + pos: 36.5,10.5 parent: 1 - - uid: 822 + - uid: 502 components: - type: Transform - pos: 26.5,36.5 + pos: 33.5,8.5 parent: 1 - - uid: 823 + - uid: 503 components: - type: Transform - pos: 25.5,36.5 + pos: 32.5,12.5 parent: 1 - - uid: 824 + - uid: 504 components: - type: Transform - pos: 25.5,37.5 + pos: 31.5,11.5 parent: 1 - - uid: 825 + - uid: 505 components: - type: Transform - pos: 25.5,38.5 + pos: 31.5,10.5 parent: 1 - - uid: 826 + - uid: 506 components: - type: Transform - pos: 25.5,39.5 + pos: 31.5,9.5 parent: 1 - - uid: 827 + - uid: 507 components: - type: Transform - pos: 25.5,40.5 + pos: 31.5,8.5 parent: 1 - - uid: 828 + - uid: 508 components: - type: Transform - pos: 29.5,37.5 + pos: 31.5,7.5 parent: 1 - - uid: 829 + - uid: 509 components: - type: Transform - pos: 29.5,38.5 + pos: 30.5,5.5 parent: 1 - - uid: 830 + - uid: 510 components: - type: Transform - pos: 29.5,39.5 + pos: 29.5,4.5 parent: 1 - - uid: 831 + - uid: 511 components: - type: Transform - pos: 29.5,40.5 + pos: 25.5,4.5 parent: 1 - - uid: 832 + - uid: 512 components: - type: Transform - pos: 30.5,37.5 + pos: 24.5,5.5 parent: 1 - - uid: 833 + - uid: 513 components: - type: Transform - pos: 31.5,37.5 + pos: 23.5,7.5 parent: 1 - - uid: 834 + - uid: 514 components: - type: Transform - pos: 24.5,37.5 + pos: 23.5,8.5 parent: 1 - - uid: 835 + - uid: 515 components: - type: Transform - pos: 23.5,37.5 + pos: 23.5,9.5 parent: 1 - - uid: 836 + - uid: 516 components: - type: Transform - pos: 22.5,33.5 + pos: 23.5,10.5 parent: 1 - - uid: 837 + - uid: 517 components: - type: Transform - pos: 23.5,33.5 + pos: 23.5,11.5 parent: 1 - - uid: 838 + - uid: 519 components: - type: Transform - pos: 24.5,33.5 + pos: 21.5,8.5 parent: 1 - - uid: 839 + - uid: 520 components: - type: Transform - pos: 25.5,33.5 + pos: 20.5,9.5 parent: 1 - - uid: 840 + - uid: 521 components: - type: Transform - pos: 26.5,33.5 + pos: 19.5,9.5 parent: 1 - - uid: 841 + - uid: 522 components: - type: Transform - pos: 27.5,33.5 + pos: 20.5,10.5 parent: 1 - - uid: 842 + - uid: 523 components: - type: Transform - pos: 28.5,33.5 + pos: 20.5,11.5 parent: 1 - - uid: 843 + - uid: 524 components: - type: Transform - pos: 29.5,33.5 + pos: 19.5,11.5 parent: 1 - - uid: 844 + - uid: 525 components: - type: Transform - pos: 30.5,33.5 + pos: 19.5,10.5 parent: 1 - - uid: 845 + - uid: 527 components: - type: Transform - pos: 31.5,33.5 + pos: 19.5,12.5 parent: 1 - - uid: 846 + - uid: 528 components: - type: Transform - pos: 32.5,33.5 + pos: 18.5,10.5 parent: 1 - - uid: 847 + - uid: 529 components: - type: Transform - pos: 24.5,34.5 + pos: 17.5,13.5 parent: 1 - - uid: 848 + - uid: 530 components: - type: Transform - pos: 24.5,35.5 + pos: 15.5,15.5 parent: 1 - - uid: 849 + - uid: 531 components: - type: Transform - pos: 30.5,34.5 + pos: 15.5,16.5 parent: 1 - - uid: 850 + - uid: 532 components: - type: Transform - pos: 30.5,35.5 + pos: 15.5,17.5 parent: 1 - - uid: 851 + - uid: 533 components: - type: Transform - pos: 33.5,33.5 + pos: 15.5,18.5 parent: 1 - - uid: 852 + - uid: 534 components: - type: Transform - pos: 33.5,34.5 + pos: 15.5,19.5 parent: 1 - - uid: 853 + - uid: 535 components: - type: Transform - pos: 21.5,33.5 + pos: 15.5,20.5 parent: 1 - - uid: 854 + - uid: 536 components: - type: Transform - pos: 21.5,34.5 + pos: 15.5,21.5 parent: 1 - - uid: 855 + - uid: 537 components: - type: Transform - pos: 21.5,35.5 + pos: 16.5,20.5 parent: 1 - - uid: 856 + - uid: 538 components: - type: Transform - pos: 33.5,35.5 + pos: 16.5,18.5 parent: 1 - - uid: 857 + - uid: 539 components: - type: Transform - pos: 26.5,32.5 + pos: 16.5,16.5 parent: 1 - - uid: 858 + - uid: 540 components: - type: Transform - pos: 26.5,31.5 + pos: 17.5,15.5 parent: 1 - - uid: 859 + - uid: 541 components: - type: Transform - pos: 26.5,30.5 + pos: 17.5,16.5 parent: 1 - - uid: 860 + - uid: 542 components: - type: Transform - pos: 28.5,32.5 + pos: 17.5,17.5 parent: 1 - - uid: 861 + - uid: 543 components: - type: Transform - pos: 28.5,31.5 + pos: 17.5,18.5 parent: 1 - - uid: 862 + - uid: 544 components: - type: Transform - pos: 28.5,30.5 + pos: 17.5,19.5 parent: 1 - - uid: 863 + - uid: 545 components: - type: Transform - pos: 32.5,23.5 + pos: 17.5,20.5 parent: 1 - - uid: 864 + - uid: 546 components: - type: Transform - pos: 31.5,23.5 + pos: 17.5,21.5 parent: 1 - - uid: 865 + - uid: 548 components: - type: Transform - pos: 30.5,23.5 + pos: 19.5,26.5 parent: 1 - - uid: 866 + - uid: 565 components: - type: Transform - pos: 29.5,23.5 + pos: 20.5,36.5 parent: 1 - - uid: 867 + - uid: 639 components: - type: Transform - pos: 28.5,23.5 + pos: 30.5,47.5 parent: 1 - - uid: 868 + - uid: 642 components: - type: Transform - pos: 27.5,23.5 + pos: 31.5,49.5 parent: 1 - - uid: 869 + - uid: 644 components: - type: Transform - pos: 26.5,23.5 + pos: 30.5,46.5 parent: 1 - - uid: 870 + - uid: 645 components: - type: Transform - pos: 25.5,23.5 + pos: 24.5,46.5 parent: 1 - - uid: 871 + - uid: 646 components: - type: Transform - pos: 24.5,23.5 + pos: 24.5,47.5 parent: 1 - - uid: 872 + - uid: 647 components: - type: Transform - pos: 23.5,23.5 + pos: 24.5,48.5 parent: 1 - - uid: 873 + - uid: 648 components: - type: Transform - pos: 22.5,23.5 + pos: 22.5,46.5 parent: 1 - - uid: 874 + - uid: 649 components: - type: Transform - pos: 23.5,24.5 + pos: 22.5,47.5 parent: 1 - - uid: 875 + - uid: 652 components: - type: Transform - pos: 23.5,25.5 + pos: 21.5,44.5 parent: 1 - - uid: 876 + - uid: 717 components: - type: Transform - pos: 23.5,26.5 + pos: 37.5,23.5 parent: 1 - - uid: 877 + - uid: 864 components: - type: Transform - pos: 23.5,27.5 + pos: 30.5,49.5 parent: 1 - - uid: 878 + - uid: 875 components: - type: Transform - pos: 23.5,28.5 + pos: 20.5,12.5 parent: 1 - - uid: 879 + - uid: 927 components: - type: Transform - pos: 23.5,29.5 + pos: 19.5,25.5 parent: 1 - - uid: 880 + - uid: 980 components: - type: Transform - pos: 31.5,24.5 + pos: 37.5,18.5 parent: 1 - - uid: 881 + - uid: 1282 components: - type: Transform - pos: 31.5,25.5 + pos: 24.5,49.5 parent: 1 - - uid: 882 + - uid: 1712 components: - type: Transform - pos: 31.5,26.5 + pos: 16.5,14.5 parent: 1 - - uid: 883 + - uid: 1720 components: - type: Transform - pos: 31.5,27.5 + pos: 38.5,14.5 parent: 1 - - uid: 884 +- proto: Autolathe + entities: + - uid: 624 components: - type: Transform - pos: 31.5,28.5 + pos: 31.5,25.5 parent: 1 - - uid: 885 +- proto: BedsheetMedical + entities: + - uid: 946 components: - type: Transform - pos: 31.5,29.5 + pos: 23.5,24.5 parent: 1 - - uid: 886 + - uid: 954 components: - type: Transform - pos: 24.5,28.5 + pos: 22.5,24.5 parent: 1 - - uid: 887 +- proto: BenchSteelLeft + entities: + - uid: 697 components: - type: Transform - pos: 25.5,28.5 + rot: 1.5707963267948966 rad + pos: 31.5,14.5 parent: 1 - - uid: 888 +- proto: BenchSteelRight + entities: + - uid: 703 components: - type: Transform - pos: 26.5,28.5 + rot: 1.5707963267948966 rad + pos: 31.5,15.5 parent: 1 - - uid: 889 +- proto: BlastDoor + entities: + - uid: 765 components: - type: Transform - pos: 27.5,28.5 + pos: 34.5,22.5 parent: 1 - - uid: 890 + - uid: 766 components: - type: Transform - pos: 28.5,28.5 + pos: 33.5,22.5 parent: 1 - - uid: 891 + - uid: 767 components: - type: Transform - pos: 29.5,28.5 + pos: 35.5,22.5 parent: 1 - - uid: 892 + - uid: 815 components: - type: Transform - pos: 30.5,28.5 + rot: 1.5707963267948966 rad + pos: 21.5,28.5 parent: 1 - - uid: 893 + - uid: 816 components: - type: Transform - pos: 24.5,25.5 + rot: 1.5707963267948966 rad + pos: 21.5,34.5 parent: 1 - - uid: 894 +- proto: BlastDoorOpen + entities: + - uid: 950 components: - type: Transform - pos: 25.5,25.5 + rot: -1.5707963267948966 rad + pos: 36.5,19.5 parent: 1 - - uid: 895 + - uid: 979 components: - type: Transform - pos: 26.5,25.5 + rot: -1.5707963267948966 rad + pos: 36.5,18.5 parent: 1 - - uid: 896 + - uid: 1137 components: - type: Transform - pos: 27.5,25.5 + rot: 1.5707963267948966 rad + pos: 18.5,18.5 parent: 1 - - uid: 897 + - uid: 1142 components: - type: Transform - pos: 28.5,25.5 + rot: 1.5707963267948966 rad + pos: 18.5,19.5 parent: 1 - - uid: 898 + - uid: 1601 components: - type: Transform - pos: 29.5,25.5 + pos: 26.5,41.5 parent: 1 - - uid: 899 + - uid: 1602 components: - type: Transform - pos: 30.5,25.5 + pos: 27.5,41.5 parent: 1 - - uid: 900 + - uid: 1603 components: - type: Transform - pos: 29.5,21.5 + pos: 28.5,41.5 parent: 1 - - uid: 901 + - uid: 1604 components: - type: Transform - pos: 28.5,21.5 + rot: 1.5707963267948966 rad + pos: 22.5,39.5 parent: 1 - - uid: 902 + - uid: 1605 components: - type: Transform - pos: 27.5,21.5 + rot: 1.5707963267948966 rad + pos: 22.5,40.5 parent: 1 - - uid: 903 + - uid: 1606 components: - type: Transform - pos: 26.5,21.5 + rot: -1.5707963267948966 rad + pos: 32.5,39.5 parent: 1 - - uid: 904 + - uid: 1607 components: - type: Transform - pos: 25.5,21.5 + rot: -1.5707963267948966 rad + pos: 32.5,40.5 parent: 1 - - uid: 905 + - uid: 1714 components: - type: Transform - pos: 28.5,20.5 + pos: 26.5,20.5 parent: 1 - - uid: 906 + - uid: 1715 components: - type: Transform - pos: 28.5,18.5 + pos: 27.5,20.5 parent: 1 - - uid: 907 + - uid: 1716 components: - type: Transform - pos: 28.5,19.5 + pos: 28.5,20.5 parent: 1 - - uid: 908 + - uid: 1717 components: - type: Transform - pos: 29.5,18.5 + pos: 26.5,12.5 parent: 1 - - uid: 909 + - uid: 1718 components: - type: Transform - pos: 30.5,18.5 + pos: 27.5,12.5 parent: 1 - - uid: 910 + - uid: 1719 components: - type: Transform - pos: 31.5,18.5 + pos: 28.5,12.5 parent: 1 - - uid: 911 +- proto: BlueprintLithograph + entities: + - uid: 823 components: - type: Transform - pos: 32.5,18.5 + pos: 25.5,23.5 parent: 1 - - uid: 912 +- proto: Brutepack1 + entities: + - uid: 1122 components: - type: Transform - pos: 33.5,18.5 - parent: 1 - - uid: 913 + parent: 1118 + - type: Stack + count: 4 + - type: Physics + canCollide: False +- proto: ButtonFrameCaution + entities: + - uid: 771 components: - type: Transform - pos: 34.5,18.5 + pos: 32.5,20.5 parent: 1 - - uid: 914 + - uid: 827 components: - type: Transform - pos: 35.5,18.5 + rot: 1.5707963267948966 rad + pos: 19.5,19.5 parent: 1 - - uid: 915 + - uid: 879 components: - type: Transform - pos: 26.5,20.5 + pos: 27.5,40.5 parent: 1 - - uid: 916 + - uid: 989 components: - type: Transform - pos: 26.5,19.5 + rot: 1.5707963267948966 rad + pos: 22.499037,38.12165 parent: 1 - - uid: 917 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 809 components: - type: Transform - pos: 26.5,18.5 + rot: -1.5707963267948966 rad + pos: 25.5,15.5 parent: 1 - - uid: 918 +- proto: ButtonFrameExit + entities: + - uid: 768 components: - type: Transform - pos: 25.5,18.5 + rot: -1.5707963267948966 rad + pos: 36.5,21.5 parent: 1 - - uid: 919 +- proto: ButtonFrameJanitor + entities: + - uid: 575 components: - type: Transform - pos: 24.5,18.5 + rot: -1.5707963267948966 rad + pos: 35.514404,17.71565 parent: 1 - - uid: 920 + - uid: 608 components: - type: Transform - pos: 23.5,18.5 + rot: -1.5707963267948966 rad + pos: 35.514404,17.280466 parent: 1 - - uid: 921 +- proto: CableApcExtension + entities: + - uid: 922 components: - type: Transform - pos: 22.5,18.5 + pos: 21.5,17.5 parent: 1 - - uid: 922 + - uid: 1057 components: - type: Transform - pos: 21.5,18.5 + pos: 29.5,17.5 parent: 1 - - uid: 923 + - uid: 1058 components: - type: Transform - pos: 20.5,18.5 + pos: 29.5,18.5 parent: 1 - - uid: 924 + - uid: 1059 components: - type: Transform - pos: 19.5,18.5 + pos: 29.5,19.5 parent: 1 - - uid: 925 + - uid: 1060 components: - type: Transform - pos: 21.5,19.5 + pos: 30.5,18.5 parent: 1 - - uid: 926 + - uid: 1061 components: - type: Transform - pos: 21.5,20.5 + pos: 31.5,18.5 parent: 1 - - uid: 927 + - uid: 1062 components: - type: Transform - pos: 33.5,19.5 + pos: 32.5,18.5 parent: 1 - - uid: 928 + - uid: 1063 components: - type: Transform - pos: 33.5,20.5 + pos: 33.5,18.5 parent: 1 - - uid: 929 + - uid: 1064 components: - type: Transform - pos: 30.5,13.5 + pos: 34.5,18.5 parent: 1 - - uid: 930 + - uid: 1065 components: - type: Transform - pos: 29.5,13.5 + pos: 35.5,18.5 parent: 1 - - uid: 931 + - uid: 1066 components: - type: Transform - pos: 28.5,13.5 + pos: 33.5,19.5 parent: 1 - - uid: 932 + - uid: 1067 components: - type: Transform - pos: 27.5,13.5 + pos: 31.5,19.5 parent: 1 - - uid: 933 + - uid: 1068 components: - type: Transform - pos: 26.5,13.5 + pos: 33.5,17.5 parent: 1 - - uid: 934 + - uid: 1069 components: - type: Transform - pos: 25.5,13.5 + pos: 33.5,16.5 parent: 1 - - uid: 935 + - uid: 1070 components: - type: Transform - pos: 24.5,13.5 + pos: 33.5,15.5 parent: 1 - - uid: 936 + - uid: 1071 components: - type: Transform - pos: 24.5,14.5 + pos: 32.5,15.5 parent: 1 - - uid: 937 + - uid: 1072 components: - type: Transform - pos: 24.5,15.5 + pos: 31.5,15.5 parent: 1 - - uid: 938 + - uid: 1073 components: - type: Transform - pos: 24.5,16.5 + pos: 31.5,14.5 parent: 1 - - uid: 939 + - uid: 1074 components: - type: Transform - pos: 23.5,16.5 + pos: 34.5,15.5 parent: 1 - - uid: 940 + - uid: 1075 components: - type: Transform - pos: 22.5,16.5 + pos: 35.5,15.5 parent: 1 - - uid: 941 + - uid: 1076 components: - type: Transform - pos: 21.5,16.5 + pos: 31.5,13.5 parent: 1 - - uid: 942 + - uid: 1077 components: - type: Transform - pos: 20.5,16.5 + pos: 31.5,12.5 parent: 1 - - uid: 943 + - uid: 1078 components: - type: Transform - pos: 19.5,16.5 + pos: 35.5,14.5 parent: 1 - - uid: 944 + - uid: 1079 components: - type: Transform - pos: 30.5,14.5 + pos: 35.5,13.5 parent: 1 - - uid: 945 + - uid: 1080 components: - type: Transform - pos: 30.5,15.5 + pos: 33.5,20.5 parent: 1 - - uid: 946 + - uid: 1081 components: - type: Transform - pos: 30.5,16.5 + pos: 33.5,21.5 parent: 1 - - uid: 947 + - uid: 1082 components: - type: Transform - pos: 31.5,16.5 + pos: 34.5,21.5 parent: 1 - - uid: 948 + - uid: 1083 components: - type: Transform - pos: 32.5,16.5 + pos: 35.5,21.5 parent: 1 - - uid: 949 + - uid: 1084 components: - type: Transform - pos: 33.5,16.5 + pos: 36.5,21.5 parent: 1 - - uid: 950 + - uid: 1085 components: - type: Transform - pos: 34.5,16.5 + pos: 33.5,22.5 parent: 1 - - uid: 951 + - uid: 1086 components: - type: Transform - pos: 35.5,16.5 + pos: 33.5,23.5 parent: 1 - - uid: 952 + - uid: 1087 components: - type: Transform - pos: 33.5,15.5 + pos: 33.5,24.5 parent: 1 - - uid: 953 + - uid: 1088 components: - type: Transform - pos: 21.5,15.5 + pos: 33.5,25.5 parent: 1 - - uid: 954 + - uid: 1089 components: - type: Transform - pos: 29.5,6.5 + pos: 33.5,26.5 parent: 1 - - uid: 955 + - uid: 1090 components: - type: Transform - pos: 28.5,6.5 + pos: 33.5,27.5 parent: 1 - - uid: 956 + - uid: 1095 components: - type: Transform - pos: 27.5,6.5 + pos: 31.5,20.5 parent: 1 - - uid: 957 + - uid: 1199 components: - type: Transform - pos: 26.5,6.5 + pos: 25.5,11.5 parent: 1 - - uid: 958 + - uid: 1200 components: - type: Transform - pos: 25.5,6.5 + pos: 24.5,11.5 parent: 1 - - uid: 959 + - uid: 1201 components: - type: Transform - pos: 25.5,7.5 + pos: 26.5,11.5 parent: 1 - - uid: 960 + - uid: 1202 components: - type: Transform - pos: 25.5,8.5 + pos: 27.5,11.5 parent: 1 - - uid: 961 + - uid: 1203 components: - type: Transform - pos: 24.5,8.5 + pos: 28.5,11.5 parent: 1 - - uid: 962 + - uid: 1204 components: - type: Transform - pos: 29.5,7.5 + pos: 29.5,11.5 parent: 1 - - uid: 963 + - uid: 1205 components: - type: Transform - pos: 29.5,8.5 + pos: 30.5,11.5 parent: 1 - - uid: 964 + - uid: 1206 components: - type: Transform - pos: 30.5,8.5 + pos: 25.5,10.5 parent: 1 - - uid: 965 + - uid: 1207 components: - type: Transform - pos: 27.5,7.5 + pos: 25.5,9.5 parent: 1 - - uid: 966 + - uid: 1208 components: - type: Transform - pos: 27.5,9.5 + pos: 25.5,8.5 parent: 1 - - uid: 967 + - uid: 1209 components: - type: Transform - pos: 27.5,10.5 + pos: 29.5,10.5 parent: 1 - - uid: 968 + - uid: 1210 components: - type: Transform - pos: 27.5,8.5 + pos: 29.5,9.5 parent: 1 - - uid: 969 + - uid: 1211 components: - type: Transform - pos: 27.5,11.5 + pos: 29.5,8.5 parent: 1 - - uid: 970 + - uid: 1212 components: - type: Transform - pos: 27.5,14.5 + pos: 27.5,10.5 parent: 1 - - uid: 971 + - uid: 1213 components: - type: Transform - pos: 27.5,15.5 + pos: 27.5,9.5 parent: 1 - - uid: 972 + - uid: 1214 components: - type: Transform - pos: 27.5,16.5 + pos: 27.5,8.5 parent: 1 -- proto: CableHV - entities: - - uid: 426 + - uid: 1215 components: - type: Transform - pos: 24.5,19.5 + pos: 27.5,6.5 parent: 1 - - uid: 427 + - uid: 1216 components: - type: Transform - pos: 25.5,19.5 + pos: 27.5,5.5 parent: 1 - - uid: 428 + - uid: 1217 components: - type: Transform - pos: 26.5,19.5 + pos: 27.5,7.5 parent: 1 - - uid: 429 + - uid: 1345 components: - type: Transform - pos: 27.5,19.5 + pos: 23.5,17.5 parent: 1 - - uid: 430 + - uid: 1346 components: - type: Transform - pos: 28.5,19.5 + pos: 23.5,18.5 parent: 1 - - uid: 431 + - uid: 1347 components: - type: Transform - pos: 29.5,19.5 + pos: 22.5,18.5 parent: 1 - - uid: 432 + - uid: 1348 components: - type: Transform - pos: 30.5,19.5 + pos: 21.5,18.5 parent: 1 - - uid: 435 + - uid: 1349 components: - type: Transform - pos: 24.5,20.5 + pos: 22.5,19.5 parent: 1 - - uid: 436 + - uid: 1350 components: - type: Transform - pos: 24.5,21.5 + pos: 22.5,20.5 parent: 1 - - uid: 437 + - uid: 1351 components: - type: Transform - pos: 24.5,22.5 + pos: 22.5,21.5 parent: 1 - - uid: 438 + - uid: 1352 components: - type: Transform - pos: 30.5,20.5 + pos: 21.5,21.5 parent: 1 - - uid: 439 + - uid: 1353 components: - type: Transform - pos: 30.5,21.5 + pos: 20.5,21.5 parent: 1 - - uid: 440 + - uid: 1354 components: - type: Transform - pos: 30.5,22.5 + pos: 19.5,21.5 parent: 1 - - uid: 1036 + - uid: 1357 components: - type: Transform - pos: 35.5,9.5 + pos: 20.5,17.5 parent: 1 - - uid: 1039 + - uid: 1358 components: - type: Transform - pos: 34.5,9.5 + pos: 20.5,16.5 parent: 1 - - uid: 1040 + - uid: 1359 components: - type: Transform - pos: 33.5,9.5 + pos: 20.5,15.5 parent: 1 - - uid: 1041 + - uid: 1360 components: - type: Transform - pos: 32.5,9.5 + pos: 20.5,14.5 parent: 1 - - uid: 1042 + - uid: 1361 components: - type: Transform - pos: 31.5,9.5 + pos: 20.5,13.5 parent: 1 - - uid: 1043 + - uid: 1362 components: - type: Transform - pos: 30.5,9.5 + pos: 19.5,15.5 parent: 1 - - uid: 1044 + - uid: 1363 components: - type: Transform - pos: 34.5,7.5 + pos: 24.5,18.5 parent: 1 - - uid: 1045 + - uid: 1364 components: - type: Transform - pos: 33.5,7.5 + pos: 25.5,18.5 parent: 1 - - uid: 1046 + - uid: 1365 components: - type: Transform - pos: 32.5,7.5 + pos: 26.5,18.5 parent: 1 - - uid: 1047 + - uid: 1366 components: - type: Transform - pos: 31.5,7.5 + pos: 23.5,16.5 parent: 1 - - uid: 1048 + - uid: 1367 components: - type: Transform - pos: 30.5,7.5 + pos: 23.5,15.5 parent: 1 - - uid: 1049 + - uid: 1368 components: - type: Transform - pos: 35.5,7.5 + pos: 23.5,14.5 parent: 1 - - uid: 1050 + - uid: 1369 components: - type: Transform - pos: 31.5,8.5 + pos: 24.5,14.5 parent: 1 - - uid: 1051 + - uid: 1370 components: - type: Transform - pos: 33.5,8.5 + pos: 24.5,13.5 parent: 1 - - uid: 1052 + - uid: 1371 components: - type: Transform - pos: 35.5,8.5 + pos: 26.5,17.5 parent: 1 - - uid: 1053 + - uid: 1372 components: - type: Transform - pos: 29.5,7.5 + pos: 26.5,16.5 parent: 1 - - uid: 1054 + - uid: 1373 components: - type: Transform - pos: 29.5,8.5 + pos: 26.5,15.5 parent: 1 - - uid: 1055 + - uid: 1374 components: - type: Transform - pos: 29.5,9.5 + pos: 26.5,14.5 parent: 1 - - uid: 1056 + - uid: 1375 components: - type: Transform - pos: 29.5,10.5 + pos: 26.5,13.5 parent: 1 - - uid: 1057 + - uid: 1376 components: - type: Transform - pos: 19.5,7.5 + pos: 26.5,19.5 parent: 1 - - uid: 1058 + - uid: 1377 components: - type: Transform - pos: 20.5,7.5 + pos: 23.5,20.5 parent: 1 - - uid: 1059 + - uid: 1378 components: - type: Transform - pos: 21.5,7.5 + pos: 21.5,22.5 parent: 1 - - uid: 1060 + - uid: 1542 components: - type: Transform - pos: 22.5,7.5 + pos: 30.5,21.5 parent: 1 - - uid: 1061 + - uid: 1543 components: - type: Transform - pos: 23.5,7.5 + pos: 30.5,22.5 parent: 1 - - uid: 1062 + - uid: 1544 components: - type: Transform - pos: 24.5,7.5 + pos: 30.5,23.5 parent: 1 - - uid: 1063 + - uid: 1545 components: - type: Transform - pos: 25.5,7.5 + pos: 31.5,23.5 parent: 1 - - uid: 1064 + - uid: 1546 components: - type: Transform - pos: 25.5,8.5 + pos: 29.5,22.5 parent: 1 - - uid: 1065 + - uid: 1547 components: - type: Transform - pos: 25.5,9.5 + pos: 28.5,22.5 parent: 1 - - uid: 1066 + - uid: 1548 components: - type: Transform - pos: 25.5,10.5 + pos: 27.5,22.5 parent: 1 - - uid: 1067 + - uid: 1549 components: - type: Transform - pos: 23.5,8.5 + pos: 26.5,22.5 parent: 1 - - uid: 1068 + - uid: 1550 components: - type: Transform - pos: 21.5,8.5 + pos: 25.5,22.5 parent: 1 - - uid: 1069 + - uid: 1551 components: - type: Transform - pos: 19.5,8.5 + pos: 26.5,23.5 parent: 1 - - uid: 1070 + - uid: 1552 components: - type: Transform - pos: 19.5,9.5 + pos: 26.5,24.5 parent: 1 - - uid: 1071 + - uid: 1553 components: - type: Transform - pos: 20.5,9.5 + pos: 26.5,25.5 parent: 1 - - uid: 1072 + - uid: 1554 components: - type: Transform - pos: 21.5,9.5 + pos: 25.5,25.5 parent: 1 - - uid: 1073 + - uid: 1555 components: - type: Transform - pos: 22.5,9.5 + pos: 24.5,25.5 parent: 1 - - uid: 1074 + - uid: 1556 components: - type: Transform - pos: 23.5,9.5 + pos: 23.5,25.5 parent: 1 - - uid: 1075 + - uid: 1557 components: - type: Transform - pos: 24.5,9.5 + pos: 22.5,25.5 parent: 1 - - uid: 1076 + - uid: 1558 components: - type: Transform - pos: 26.5,10.5 + pos: 21.5,25.5 parent: 1 - - uid: 1077 + - uid: 1559 components: - type: Transform - pos: 28.5,10.5 + pos: 20.5,25.5 parent: 1 - - uid: 1078 + - uid: 1560 components: - type: Transform - pos: 27.5,10.5 + pos: 30.5,24.5 parent: 1 - - uid: 1079 + - uid: 1561 components: - type: Transform - pos: 27.5,11.5 + pos: 30.5,25.5 parent: 1 - - uid: 1080 + - uid: 1562 components: - type: Transform - pos: 27.5,12.5 + pos: 30.5,26.5 parent: 1 - - uid: 1081 + - uid: 1563 components: - type: Transform - pos: 27.5,13.5 + pos: 30.5,27.5 parent: 1 - - uid: 1082 + - uid: 1564 components: - type: Transform - pos: 27.5,14.5 + pos: 30.5,28.5 parent: 1 - - uid: 1083 + - uid: 1565 components: - type: Transform - pos: 27.5,15.5 + pos: 30.5,29.5 parent: 1 - - uid: 1084 + - uid: 1566 components: - type: Transform - pos: 27.5,16.5 + pos: 30.5,30.5 parent: 1 - - uid: 1085 + - uid: 1567 components: - type: Transform - pos: 27.5,17.5 + pos: 30.5,31.5 parent: 1 - - uid: 1086 + - uid: 1568 components: - type: Transform - pos: 27.5,18.5 + pos: 30.5,32.5 parent: 1 -- proto: CableMV - entities: - - uid: 766 + - uid: 1569 components: - type: Transform - pos: 30.5,22.5 + pos: 30.5,33.5 parent: 1 - - uid: 767 + - uid: 1570 components: - type: Transform - pos: 30.5,23.5 + pos: 30.5,34.5 parent: 1 - - uid: 768 + - uid: 1571 components: - type: Transform - pos: 31.5,23.5 + pos: 30.5,35.5 parent: 1 - - uid: 769 + - uid: 1572 components: - type: Transform - pos: 32.5,23.5 + pos: 30.5,36.5 parent: 1 - - uid: 770 + - uid: 1573 components: - type: Transform - pos: 29.5,23.5 + pos: 31.5,32.5 parent: 1 - - uid: 771 + - uid: 1574 components: - type: Transform - pos: 28.5,23.5 + pos: 32.5,32.5 parent: 1 - - uid: 772 + - uid: 1575 components: - type: Transform - pos: 28.5,22.5 + pos: 33.5,32.5 parent: 1 - - uid: 773 + - uid: 1576 components: - type: Transform - pos: 28.5,21.5 + pos: 31.5,35.5 parent: 1 - - uid: 774 + - uid: 1577 components: - type: Transform - pos: 29.5,21.5 + pos: 32.5,35.5 parent: 1 - - uid: 775 + - uid: 1578 components: - type: Transform - pos: 24.5,22.5 + pos: 25.5,36.5 parent: 1 - - uid: 776 + - uid: 1579 components: - type: Transform - pos: 24.5,23.5 + pos: 26.5,36.5 parent: 1 - - uid: 777 + - uid: 1580 components: - type: Transform - pos: 24.5,24.5 + pos: 26.5,35.5 parent: 1 - - uid: 778 + - uid: 1581 components: - type: Transform - pos: 24.5,25.5 + pos: 26.5,34.5 parent: 1 - - uid: 779 + - uid: 1582 components: - type: Transform - pos: 24.5,26.5 + pos: 26.5,33.5 parent: 1 - - uid: 780 + - uid: 1583 components: - type: Transform - pos: 24.5,27.5 + pos: 26.5,32.5 parent: 1 - - uid: 781 + - uid: 1584 components: - type: Transform - pos: 24.5,28.5 + pos: 26.5,31.5 parent: 1 - - uid: 782 + - uid: 1585 components: - type: Transform - pos: 24.5,29.5 + pos: 25.5,31.5 parent: 1 - - uid: 783 + - uid: 1586 components: - type: Transform - pos: 24.5,30.5 + pos: 24.5,31.5 parent: 1 - - uid: 784 + - uid: 1587 components: - type: Transform - pos: 25.5,30.5 + pos: 23.5,31.5 parent: 1 - - uid: 785 + - uid: 1588 components: - type: Transform - pos: 26.5,30.5 + pos: 22.5,31.5 parent: 1 - - uid: 786 + - uid: 1589 components: - type: Transform - pos: 27.5,30.5 + pos: 21.5,31.5 parent: 1 - - uid: 787 + - uid: 1590 components: - type: Transform - pos: 28.5,30.5 + pos: 23.5,32.5 parent: 1 - - uid: 788 + - uid: 1591 components: - type: Transform - pos: 28.5,31.5 + pos: 23.5,33.5 parent: 1 - - uid: 789 + - uid: 1592 components: - type: Transform - pos: 28.5,32.5 + pos: 23.5,35.5 parent: 1 - - uid: 790 + - uid: 1593 components: - type: Transform - pos: 28.5,33.5 + pos: 23.5,34.5 parent: 1 - - uid: 791 + - uid: 1594 components: - type: Transform - pos: 28.5,34.5 + pos: 22.5,35.5 parent: 1 - - uid: 792 + - uid: 1595 components: - type: Transform - pos: 28.5,35.5 + pos: 23.5,30.5 parent: 1 - - uid: 793 + - uid: 1596 components: - type: Transform - pos: 28.5,36.5 + pos: 23.5,29.5 parent: 1 - - uid: 794 + - uid: 1597 components: - type: Transform - pos: 26.5,23.5 + pos: 23.5,28.5 parent: 1 - - uid: 795 + - uid: 1598 components: - type: Transform - pos: 25.5,23.5 + pos: 23.5,27.5 parent: 1 - - uid: 796 + - uid: 1599 components: - type: Transform - pos: 29.5,36.5 + pos: 22.5,27.5 parent: 1 - - uid: 797 + - uid: 1600 components: - type: Transform - pos: 26.5,22.5 + pos: 21.5,27.5 parent: 1 - - uid: 798 + - uid: 1608 components: - type: Transform - pos: 26.5,21.5 + pos: 26.5,37.5 parent: 1 - - uid: 799 + - uid: 1610 components: - type: Transform - pos: 26.5,20.5 + pos: 26.5,38.5 parent: 1 - - uid: 800 + - uid: 1611 components: - type: Transform - pos: 26.5,19.5 + pos: 26.5,39.5 parent: 1 - - uid: 801 + - uid: 1612 components: - type: Transform - pos: 26.5,18.5 + pos: 26.5,40.5 parent: 1 - - uid: 802 + - uid: 1613 components: - type: Transform - pos: 26.5,17.5 + pos: 25.5,40.5 parent: 1 - - uid: 803 + - uid: 1614 components: - type: Transform - pos: 26.5,16.5 + pos: 24.5,40.5 parent: 1 - - uid: 804 + - uid: 1615 components: - type: Transform - pos: 26.5,15.5 + pos: 23.5,40.5 parent: 1 - - uid: 805 + - uid: 1616 components: - type: Transform - pos: 26.5,14.5 + pos: 23.5,41.5 parent: 1 - - uid: 806 + - uid: 1617 components: - type: Transform - pos: 26.5,13.5 + pos: 23.5,42.5 parent: 1 - - uid: 807 + - uid: 1618 components: - type: Transform - pos: 27.5,13.5 + pos: 23.5,43.5 parent: 1 - - uid: 808 + - uid: 1619 components: - type: Transform - pos: 28.5,13.5 + pos: 23.5,44.5 parent: 1 - - uid: 809 + - uid: 1620 components: - type: Transform - pos: 29.5,13.5 + pos: 23.5,45.5 parent: 1 - - uid: 810 + - uid: 1621 components: - type: Transform - pos: 30.5,13.5 + pos: 23.5,46.5 parent: 1 - - uid: 811 + - uid: 1622 components: - type: Transform - pos: 28.5,6.5 + pos: 23.5,47.5 parent: 1 - - uid: 812 + - uid: 1623 components: - type: Transform - pos: 28.5,7.5 + pos: 27.5,36.5 parent: 1 - - uid: 813 + - uid: 1624 components: - type: Transform - pos: 28.5,8.5 + pos: 28.5,36.5 parent: 1 - - uid: 814 + - uid: 1625 components: - type: Transform - pos: 28.5,9.5 + pos: 28.5,37.5 parent: 1 - - uid: 815 + - uid: 1626 components: - type: Transform - pos: 28.5,10.5 + pos: 28.5,38.5 parent: 1 - - uid: 816 + - uid: 1627 components: - type: Transform - pos: 28.5,11.5 + pos: 28.5,39.5 parent: 1 - - uid: 817 + - uid: 1628 components: - type: Transform - pos: 28.5,12.5 + pos: 28.5,40.5 parent: 1 - - uid: 818 + - uid: 1629 components: - type: Transform - pos: 29.5,6.5 + pos: 29.5,40.5 parent: 1 -- proto: CableTerminal - entities: - - uid: 424 + - uid: 1630 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,19.5 + pos: 30.5,40.5 parent: 1 - - uid: 425 + - uid: 1631 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,19.5 + pos: 31.5,40.5 parent: 1 -- proto: Catwalk - entities: - - uid: 8 + - uid: 1632 components: - type: Transform - pos: 20.5,13.5 + pos: 31.5,41.5 parent: 1 - - uid: 10 + - uid: 1633 components: - type: Transform - pos: 19.5,15.5 + pos: 31.5,42.5 parent: 1 - - uid: 11 + - uid: 1634 components: - type: Transform - pos: 20.5,14.5 + pos: 31.5,43.5 parent: 1 - - uid: 12 + - uid: 1635 components: - type: Transform - pos: 19.5,13.5 + pos: 31.5,44.5 parent: 1 - - uid: 13 + - uid: 1636 components: - type: Transform - pos: 19.5,16.5 + pos: 31.5,45.5 parent: 1 - - uid: 14 + - uid: 1637 components: - type: Transform - pos: 19.5,14.5 + pos: 31.5,46.5 parent: 1 - - uid: 16 + - uid: 1638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,29.5 + pos: 31.5,47.5 parent: 1 - - uid: 24 + - uid: 1639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,27.5 + pos: 22.5,40.5 parent: 1 - - uid: 31 + - uid: 1640 components: - type: Transform - pos: 35.5,13.5 + pos: 22.5,44.5 parent: 1 - - uid: 33 + - uid: 1641 components: - type: Transform - pos: 20.5,15.5 + pos: 32.5,40.5 parent: 1 - - uid: 34 + - uid: 1642 components: - type: Transform - pos: 34.5,16.5 + pos: 32.5,44.5 parent: 1 - - uid: 37 +- proto: CableHV + entities: + - uid: 221 components: - type: Transform - pos: 34.5,15.5 + pos: 20.5,20.5 parent: 1 - - uid: 40 + - uid: 1014 components: - type: Transform - pos: 34.5,14.5 + pos: 37.5,20.5 parent: 1 - - uid: 42 + - uid: 1015 components: - type: Transform - pos: 34.5,13.5 + pos: 37.5,19.5 parent: 1 - - uid: 45 + - uid: 1016 components: - type: Transform - pos: 20.5,16.5 + pos: 37.5,18.5 parent: 1 - - uid: 49 + - uid: 1017 components: - type: Transform - pos: 35.5,16.5 + pos: 37.5,17.5 parent: 1 - - uid: 52 + - uid: 1018 components: - type: Transform - pos: 35.5,15.5 + pos: 37.5,16.5 parent: 1 - - uid: 54 + - uid: 1019 components: - type: Transform - pos: 35.5,14.5 + pos: 36.5,18.5 parent: 1 - - uid: 56 + - uid: 1020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,26.5 + pos: 35.5,18.5 parent: 1 - - uid: 60 + - uid: 1021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,24.5 + pos: 34.5,18.5 parent: 1 - - uid: 94 + - uid: 1022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,29.5 + pos: 33.5,18.5 parent: 1 - - uid: 117 + - uid: 1023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,27.5 + pos: 32.5,18.5 parent: 1 - - uid: 118 + - uid: 1024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,29.5 + pos: 31.5,18.5 parent: 1 - - uid: 122 + - uid: 1025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,27.5 + pos: 30.5,18.5 parent: 1 - - uid: 123 + - uid: 1026 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,30.5 + pos: 29.5,18.5 parent: 1 - - uid: 128 + - uid: 1027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,30.5 + pos: 28.5,18.5 parent: 1 - - uid: 143 + - uid: 1028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,29.5 + pos: 33.5,17.5 parent: 1 - - uid: 159 + - uid: 1029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,40.5 + pos: 33.5,16.5 parent: 1 - - uid: 169 + - uid: 1030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,40.5 + pos: 33.5,15.5 parent: 1 - - uid: 239 + - uid: 1031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,24.5 + pos: 34.5,15.5 parent: 1 - - uid: 244 + - uid: 1032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,27.5 + pos: 28.5,17.5 parent: 1 - - uid: 247 + - uid: 1033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,24.5 + pos: 28.5,16.5 parent: 1 - - uid: 249 + - uid: 1034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,23.5 + pos: 28.5,15.5 parent: 1 - - uid: 251 + - uid: 1035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,26.5 + pos: 29.5,15.5 parent: 1 - - uid: 254 + - uid: 1318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,24.5 + pos: 27.5,18.5 parent: 1 - - uid: 256 + - uid: 1319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,23.5 + pos: 24.5,18.5 parent: 1 - - uid: 496 + - uid: 1320 components: - type: Transform - pos: 28.5,28.5 + pos: 25.5,18.5 parent: 1 - - uid: 522 + - uid: 1321 components: - type: Transform - pos: 30.5,14.5 + pos: 23.5,18.5 parent: 1 - - uid: 523 + - uid: 1322 components: - type: Transform - pos: 31.5,14.5 + pos: 22.5,18.5 parent: 1 - - uid: 543 + - uid: 1324 components: - type: Transform - pos: 25.5,13.5 + pos: 26.5,18.5 parent: 1 - - uid: 544 + - uid: 1325 components: - type: Transform - pos: 25.5,14.5 + pos: 22.5,19.5 parent: 1 - - uid: 545 + - uid: 1326 components: - type: Transform - pos: 24.5,14.5 + pos: 22.5,20.5 parent: 1 - - uid: 546 + - uid: 1327 components: - type: Transform - pos: 23.5,14.5 + pos: 22.5,21.5 parent: 1 - - uid: 547 + - uid: 1328 components: - type: Transform - pos: 29.5,13.5 + pos: 21.5,21.5 parent: 1 - - uid: 548 + - uid: 1329 components: - type: Transform - pos: 29.5,14.5 + pos: 20.5,21.5 parent: 1 - - uid: 557 + - uid: 1498 components: - type: Transform - pos: 30.5,18.5 + pos: 27.5,19.5 parent: 1 - - uid: 558 + - uid: 1499 components: - type: Transform - pos: 30.5,19.5 + pos: 27.5,20.5 parent: 1 - - uid: 559 + - uid: 1500 components: - type: Transform - pos: 31.5,19.5 + pos: 27.5,21.5 parent: 1 - - uid: 560 + - uid: 1501 components: - type: Transform - pos: 32.5,19.5 + pos: 27.5,22.5 parent: 1 - - uid: 561 + - uid: 1502 components: - type: Transform - pos: 33.5,19.5 + pos: 27.5,23.5 parent: 1 - - uid: 563 + - uid: 1503 components: - type: Transform - pos: 24.5,18.5 + pos: 27.5,24.5 parent: 1 - - uid: 566 + - uid: 1504 components: - type: Transform - pos: 26.5,28.5 + pos: 27.5,25.5 parent: 1 - - uid: 569 + - uid: 1505 components: - type: Transform - pos: 27.5,28.5 + pos: 27.5,26.5 parent: 1 -- proto: ChairPilotSeat - entities: - - uid: 512 + - uid: 1506 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,39.5 + pos: 27.5,27.5 parent: 1 - - uid: 513 + - uid: 1507 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,37.5 + pos: 27.5,28.5 parent: 1 - - uid: 514 + - uid: 1508 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,37.5 + pos: 27.5,29.5 parent: 1 -- proto: ChessBoard - entities: - - uid: 1123 + - uid: 1509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.559465,24.591022 + pos: 27.5,30.5 parent: 1 -- proto: CircuitImprinter - entities: - - uid: 421 + - uid: 1510 components: - type: Transform - pos: 31.5,25.5 + pos: 27.5,31.5 parent: 1 -- proto: ComputerTabletopAnalysisConsole - entities: - - uid: 562 + - uid: 1511 components: - type: Transform - pos: 31.5,35.5 + pos: 26.5,31.5 parent: 1 - - type: AnalysisConsole - analyzerEntity: 533 - - type: DeviceLinkSource - linkedPorts: - 533: - - - ArtifactAnalyzerSender - - ArtifactAnalyzerReceiver - - uid: 565 + - uid: 1512 components: - type: Transform - pos: 23.5,35.5 + pos: 25.5,31.5 parent: 1 - - type: AnalysisConsole - analyzerEntity: 564 - - type: DeviceLinkSource - linkedPorts: - 564: - - - ArtifactAnalyzerSender - - ArtifactAnalyzerReceiver -- proto: ComputerTabletopPowerMonitoring - entities: - - uid: 538 + - uid: 1513 components: - type: Transform - pos: 30.5,38.5 + pos: 24.5,31.5 parent: 1 -- proto: ComputerTabletopRadar - entities: - - uid: 535 + - uid: 1514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,37.5 + pos: 23.5,31.5 parent: 1 - - uid: 570 + - uid: 1515 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,37.5 + pos: 22.5,31.5 parent: 1 - - uid: 608 + - uid: 1670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,39.5 + pos: 20.5,18.5 parent: 1 - - uid: 1037 + - uid: 1671 components: - type: Transform - pos: 25.5,16.5 + pos: 19.5,20.5 parent: 1 -- proto: ComputerTabletopResearchAndDevelopment - entities: - - uid: 534 + - uid: 1672 components: - type: Transform - pos: 24.5,38.5 + pos: 19.5,19.5 parent: 1 -- proto: ComputerTabletopShuttle - entities: - - uid: 515 + - uid: 1673 components: - type: Transform - pos: 27.5,40.5 + pos: 19.5,18.5 parent: 1 -- proto: ComputerTabletopSolarControl - entities: - - uid: 502 + - uid: 1674 components: - type: Transform - pos: 24.5,16.5 + pos: 17.5,20.5 parent: 1 -- proto: ComputerTabletopStationRecords - entities: - - uid: 607 + - uid: 1675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,39.5 + pos: 17.5,19.5 parent: 1 -- proto: ComputerWithdrawBankATM - entities: - - uid: 989 + - uid: 1676 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,14.5 + pos: 17.5,18.5 parent: 1 -- proto: CrateArtifactContainer - entities: - - uid: 497 + - uid: 1677 components: - type: Transform - pos: 26.5,28.5 + pos: 17.5,17.5 parent: 1 - - uid: 573 + - uid: 1678 components: - type: Transform - pos: 28.5,28.5 + pos: 17.5,16.5 parent: 1 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 1126 + - uid: 1679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,22.5 + pos: 21.5,43.5 parent: 1 -- proto: EmergencyLight - entities: - - uid: 1087 + - uid: 1680 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,32.5 + pos: 21.5,42.5 parent: 1 - - uid: 1088 + - uid: 1681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,32.5 + pos: 21.5,41.5 parent: 1 - - uid: 1089 + - uid: 1682 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,37.5 + pos: 21.5,40.5 parent: 1 - - uid: 1090 + - uid: 1683 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,37.5 + pos: 21.5,39.5 parent: 1 - - uid: 1091 + - uid: 1684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,29.5 + pos: 22.5,39.5 parent: 1 - - uid: 1092 + - uid: 1685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,29.5 + pos: 23.5,39.5 parent: 1 - - uid: 1093 + - uid: 1686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,23.5 + pos: 24.5,39.5 parent: 1 - - uid: 1094 + - uid: 1687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,23.5 + pos: 25.5,39.5 parent: 1 - - uid: 1095 + - uid: 1688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,19.5 + pos: 26.5,39.5 parent: 1 - - uid: 1096 + - uid: 1689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,19.5 + pos: 26.5,38.5 parent: 1 - - uid: 1097 + - uid: 1690 components: - type: Transform - pos: 23.5,16.5 + pos: 26.5,37.5 parent: 1 - - uid: 1098 + - uid: 1691 components: - type: Transform - pos: 31.5,16.5 + pos: 26.5,36.5 parent: 1 - - uid: 1099 + - uid: 1692 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,13.5 + pos: 26.5,35.5 parent: 1 - - uid: 1100 + - uid: 1693 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,13.5 + pos: 26.5,34.5 parent: 1 - - uid: 1101 + - uid: 1694 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,8.5 + pos: 26.5,33.5 parent: 1 - - uid: 1102 + - uid: 1695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,6.5 + pos: 26.5,32.5 parent: 1 -- proto: EngineeringTechFab - entities: - - uid: 501 + - uid: 1696 components: - type: Transform - pos: 32.5,18.5 + pos: 26.5,31.5 parent: 1 -- proto: ExosuitFabricator - entities: - - uid: 494 + - uid: 1697 components: - type: Transform - pos: 23.5,27.5 + pos: 33.5,43.5 parent: 1 -- proto: FaxMachineShip - entities: - - uid: 536 + - uid: 1698 components: - type: Transform - pos: 23.5,38.5 + pos: 33.5,42.5 parent: 1 -- proto: FirelockGlass - entities: - - uid: 402 + - uid: 1699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,31.5 + pos: 33.5,41.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 755 - - 754 - - uid: 403 + - uid: 1700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,31.5 + pos: 33.5,40.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 755 - - 754 - - uid: 404 + - uid: 1701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,31.5 + pos: 33.5,39.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 755 - - 754 - - uid: 405 + - uid: 1702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,31.5 + pos: 32.5,39.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 755 - - 754 - - uid: 406 + - uid: 1703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,31.5 + pos: 31.5,39.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 755 - - 754 - - uid: 407 + - uid: 1704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,36.5 + pos: 30.5,39.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 756 - - uid: 408 + - uid: 1705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,36.5 + pos: 29.5,39.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 756 - - uid: 409 + - uid: 1706 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,36.5 + pos: 28.5,39.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 756 - - uid: 410 + - uid: 1707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,17.5 + pos: 27.5,39.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 753 - - 752 - - uid: 411 + - uid: 1709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,17.5 + pos: 18.5,20.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 753 - - 752 - - uid: 412 +- proto: CableMV + entities: + - uid: 1036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,17.5 + pos: 29.5,15.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 753 - - 752 - - uid: 413 + - uid: 1037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,18.5 + pos: 28.5,15.5 parent: 1 - - uid: 414 + - uid: 1038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,18.5 + pos: 28.5,16.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 753 - - uid: 415 + - uid: 1039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,12.5 + pos: 28.5,17.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 752 - - 751 - - uid: 416 + - uid: 1040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,12.5 + pos: 29.5,17.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 752 - - 751 - - uid: 417 + - uid: 1041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,12.5 + pos: 33.5,19.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 752 - - 751 - - uid: 418 + - uid: 1042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,7.5 + pos: 29.5,18.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 751 - - uid: 419 + - uid: 1043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,7.5 + pos: 30.5,18.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 751 - - uid: 460 + - uid: 1044 components: - type: Transform - pos: 26.5,22.5 + pos: 32.5,18.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 754 - - 753 - - uid: 461 + - uid: 1045 components: - type: Transform - pos: 27.5,22.5 + pos: 31.5,18.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 754 - - 753 - - uid: 462 + - uid: 1046 components: - type: Transform - pos: 28.5,22.5 + pos: 33.5,18.5 parent: 1 - - type: DeviceNetwork - deviceLists: - - 754 - - 753 -- proto: GasbenderMothershipComputer - entities: - - uid: 467 + - uid: 1047 components: - - type: MetaData - name: консоль верфи Змея - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,10.5 + pos: 34.5,18.5 parent: 1 - - uid: 468 + - uid: 1048 components: - - type: MetaData - name: консоль верфи Змея - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,10.5 + pos: 35.5,18.5 parent: 1 -- proto: GasMixerOnFlipped - entities: - - uid: 609 + - uid: 1050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,19.5 + pos: 33.5,17.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasOutletInjector - entities: - - uid: 148 + - uid: 1051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,35.5 + pos: 33.5,16.5 parent: 1 - - uid: 395 + - uid: 1052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,35.5 + pos: 33.5,15.5 parent: 1 -- proto: GasPassiveVent - entities: - - uid: 575 + - uid: 1053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,34.5 + pos: 32.5,15.5 parent: 1 - - uid: 576 + - uid: 1054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,34.5 + pos: 34.5,15.5 parent: 1 - - uid: 736 + - uid: 1055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,8.5 + pos: 31.5,15.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 737 + - uid: 1056 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,8.5 + pos: 35.5,15.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeBend - entities: - - uid: 580 + - uid: 1094 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,33.5 + pos: 33.5,20.5 parent: 1 - - uid: 581 + - uid: 1192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,34.5 + pos: 28.5,14.5 parent: 1 - - uid: 582 + - uid: 1193 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,32.5 + pos: 28.5,13.5 parent: 1 - - uid: 583 + - uid: 1194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,35.5 + pos: 28.5,12.5 parent: 1 - - uid: 597 + - uid: 1195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,32.5 + pos: 28.5,11.5 parent: 1 - - uid: 598 + - uid: 1196 components: - type: Transform - pos: 25.5,35.5 + pos: 27.5,11.5 parent: 1 - - uid: 599 + - uid: 1197 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,33.5 + pos: 26.5,11.5 parent: 1 - - uid: 600 + - uid: 1198 components: - type: Transform - pos: 24.5,34.5 + pos: 25.5,11.5 parent: 1 - - uid: 611 + - uid: 1330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,18.5 + pos: 27.5,17.5 parent: 1 - - uid: 612 + - uid: 1331 components: - type: Transform - pos: 35.5,20.5 + pos: 26.5,17.5 parent: 1 - - uid: 613 + - uid: 1332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,19.5 + pos: 26.5,18.5 parent: 1 - - uid: 638 + - uid: 1333 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,37.5 + pos: 25.5,18.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 663 + - uid: 1334 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,6.5 + pos: 24.5,18.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 666 + - uid: 1335 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,9.5 + pos: 23.5,18.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 697 + - uid: 1336 components: - type: Transform - pos: 28.5,35.5 + pos: 22.5,18.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 710 + - uid: 1337 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,8.5 + pos: 21.5,18.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 711 + - uid: 1338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,8.5 + pos: 23.5,17.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 715 + - uid: 1339 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,12.5 + pos: 22.5,19.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 720 + - uid: 1340 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,17.5 + pos: 22.5,20.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 721 + - uid: 1341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,20.5 + pos: 22.5,21.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 726 + - uid: 1342 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,24.5 + pos: 21.5,21.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 728 + - uid: 1343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,8.5 + pos: 20.5,21.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 729 + - uid: 1516 components: - type: Transform - pos: 29.5,9.5 + pos: 22.5,31.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 730 + - uid: 1517 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,8.5 + pos: 23.5,31.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 742 + - uid: 1518 components: - type: Transform - pos: 30.5,20.5 + pos: 24.5,31.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 743 + - uid: 1519 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,18.5 + pos: 25.5,31.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 744 + - uid: 1520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,18.5 + pos: 26.5,31.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeFourway - entities: - - uid: 637 + - uid: 1521 components: - type: Transform - pos: 27.5,33.5 + pos: 27.5,31.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 657 + - uid: 1522 components: - type: Transform - pos: 27.5,19.5 + pos: 27.5,32.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 695 + - uid: 1523 components: - type: Transform - pos: 26.5,34.5 + pos: 27.5,33.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 724 + - uid: 1524 components: - type: Transform - pos: 28.5,20.5 + pos: 27.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 735 + - uid: 1525 components: - type: Transform - pos: 28.5,9.5 + pos: 27.5,35.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeStraight - entities: - - uid: 579 + - uid: 1526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,35.5 + pos: 27.5,36.5 parent: 1 - - uid: 586 + - uid: 1527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,34.5 + pos: 26.5,36.5 parent: 1 - - uid: 587 + - uid: 1528 components: - type: Transform - pos: 29.5,33.5 + pos: 25.5,36.5 parent: 1 - - uid: 588 + - uid: 1529 components: - type: Transform - pos: 29.5,34.5 + pos: 28.5,31.5 parent: 1 - - uid: 589 + - uid: 1530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,35.5 + pos: 28.5,30.5 parent: 1 - - uid: 590 + - uid: 1531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,35.5 + pos: 28.5,29.5 parent: 1 - - uid: 592 + - uid: 1532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,35.5 + pos: 28.5,28.5 parent: 1 - - uid: 593 + - uid: 1533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,35.5 + pos: 28.5,26.5 parent: 1 - - uid: 594 + - uid: 1534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,35.5 + pos: 28.5,25.5 parent: 1 - - uid: 595 + - uid: 1535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,34.5 + pos: 28.5,24.5 parent: 1 - - uid: 601 + - uid: 1536 components: - type: Transform - pos: 25.5,33.5 + pos: 28.5,23.5 parent: 1 - - uid: 602 + - uid: 1537 components: - type: Transform - pos: 25.5,34.5 + pos: 28.5,22.5 parent: 1 - - uid: 610 + - uid: 1538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,20.5 + pos: 28.5,27.5 parent: 1 - - uid: 614 + - uid: 1539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,19.5 + pos: 29.5,22.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 626 + - uid: 1540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,19.5 + pos: 30.5,22.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 627 + - uid: 1541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,19.5 + pos: 30.5,21.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 628 +- proto: CableTerminal + entities: + - uid: 1708 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,19.5 + pos: 20.5,18.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 629 +- proto: CarpetPurple + entities: + - uid: 41 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,19.5 + pos: 26.5,40.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 630 + - uid: 75 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,19.5 + pos: 26.5,39.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 631 + - uid: 1428 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,19.5 + pos: 25.5,40.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 639 + - uid: 1429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,33.5 + pos: 27.5,40.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 640 + - uid: 1430 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,33.5 + pos: 28.5,40.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 641 + - uid: 1431 components: - type: Transform - pos: 27.5,34.5 + pos: 29.5,40.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 642 + - uid: 1432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,33.5 + pos: 28.5,39.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 643 + - uid: 1433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,33.5 + pos: 23.5,42.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 644 + - uid: 1434 components: - type: Transform - pos: 27.5,35.5 + pos: 24.5,42.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 645 + - uid: 1435 components: - type: Transform - pos: 27.5,36.5 + pos: 30.5,42.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 646 + - uid: 1436 components: - type: Transform - pos: 27.5,31.5 + pos: 31.5,42.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 647 +- proto: Catwalk + entities: + - uid: 12 components: - type: Transform - pos: 27.5,30.5 + pos: 22.5,19.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 648 + - uid: 18 components: - type: Transform - pos: 27.5,29.5 + pos: 21.5,18.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 649 + - uid: 27 components: - type: Transform - pos: 27.5,28.5 + pos: 22.5,18.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 650 + - uid: 38 components: - type: Transform - pos: 27.5,27.5 + rot: -1.5707963267948966 rad + pos: 30.5,47.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 651 + - uid: 40 components: - type: Transform - pos: 27.5,26.5 + rot: -1.5707963267948966 rad + pos: 30.5,46.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 652 + - uid: 93 components: - type: Transform - pos: 27.5,25.5 + pos: 17.5,15.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 653 + - uid: 155 components: - type: Transform - pos: 27.5,24.5 + pos: 34.5,29.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 654 + - uid: 158 components: - type: Transform - pos: 27.5,22.5 + pos: 32.5,47.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 655 + - uid: 159 components: - type: Transform - pos: 27.5,21.5 + pos: 33.5,44.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 656 + - uid: 163 components: - type: Transform - pos: 27.5,20.5 + pos: 34.5,35.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 658 + - uid: 166 components: - type: Transform - pos: 27.5,15.5 + rot: -1.5707963267948966 rad + pos: 20.5,21.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 659 + - uid: 171 components: - type: Transform - pos: 27.5,14.5 + pos: 33.5,38.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 660 + - uid: 175 components: - type: Transform - pos: 27.5,13.5 + pos: 34.5,32.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 661 + - uid: 179 components: - type: Transform - pos: 27.5,12.5 + pos: 20.5,35.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 664 + - uid: 184 components: - type: Transform - pos: 27.5,7.5 + pos: 21.5,38.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 665 + - uid: 190 components: - type: Transform - pos: 27.5,8.5 + pos: 21.5,44.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 667 + - uid: 197 components: - type: Transform - pos: 27.5,10.5 + pos: 22.5,20.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 678 + - uid: 218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,34.5 + pos: 37.5,21.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 679 + - uid: 279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,34.5 + pos: 37.5,15.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 680 + - uid: 282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,34.5 + pos: 17.5,21.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 681 + - uid: 322 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,34.5 + pos: 30.5,48.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 682 + - uid: 323 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,33.5 + rot: -1.5707963267948966 rad + pos: 33.5,39.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 683 + - uid: 329 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,36.5 + pos: 20.5,29.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 684 + - uid: 330 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,35.5 + rot: -1.5707963267948966 rad + pos: 24.5,46.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 685 + - uid: 331 components: - type: Transform - pos: 28.5,34.5 + pos: 32.5,46.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 686 + - uid: 336 components: - type: Transform - pos: 28.5,33.5 + rot: -1.5707963267948966 rad + pos: 24.5,47.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 687 + - uid: 342 components: - type: Transform - pos: 28.5,32.5 + rot: -1.5707963267948966 rad + pos: 24.5,48.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 688 + - uid: 352 components: - type: Transform - pos: 28.5,31.5 + rot: -1.5707963267948966 rad + pos: 21.5,43.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 689 + - uid: 353 components: - type: Transform - pos: 28.5,30.5 + rot: -1.5707963267948966 rad + pos: 21.5,42.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 690 + - uid: 354 components: - type: Transform - pos: 28.5,29.5 + rot: -1.5707963267948966 rad + pos: 21.5,41.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 691 + - uid: 355 components: - type: Transform - pos: 28.5,28.5 + rot: -1.5707963267948966 rad + pos: 21.5,40.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 692 + - uid: 356 components: - type: Transform - pos: 28.5,27.5 + rot: -1.5707963267948966 rad + pos: 21.5,39.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 693 + - uid: 362 components: - type: Transform - pos: 28.5,26.5 + rot: -1.5707963267948966 rad + pos: 33.5,40.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 694 + - uid: 363 components: - type: Transform - pos: 28.5,25.5 + rot: -1.5707963267948966 rad + pos: 33.5,41.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 698 + - uid: 364 components: - type: Transform - pos: 28.5,23.5 + rot: -1.5707963267948966 rad + pos: 33.5,42.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 699 + - uid: 365 components: - type: Transform - pos: 28.5,22.5 + rot: -1.5707963267948966 rad + pos: 33.5,43.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 700 + - uid: 372 components: - type: Transform - pos: 28.5,21.5 + rot: -1.5707963267948966 rad + pos: 37.5,16.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 701 + - uid: 373 components: - type: Transform - pos: 28.5,19.5 + rot: -1.5707963267948966 rad + pos: 37.5,17.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 702 + - uid: 374 components: - type: Transform - pos: 28.5,18.5 + rot: -1.5707963267948966 rad + pos: 37.5,18.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 703 + - uid: 375 components: - type: Transform - pos: 28.5,16.5 + rot: -1.5707963267948966 rad + pos: 37.5,19.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 704 + - uid: 376 components: - type: Transform - pos: 28.5,15.5 + rot: -1.5707963267948966 rad + pos: 37.5,20.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 705 + - uid: 377 components: - type: Transform - pos: 28.5,14.5 + rot: -1.5707963267948966 rad + pos: 17.5,16.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 706 + - uid: 378 components: - type: Transform - pos: 28.5,13.5 + rot: -1.5707963267948966 rad + pos: 17.5,17.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 707 + - uid: 379 components: - type: Transform - pos: 28.5,11.5 + rot: -1.5707963267948966 rad + pos: 17.5,18.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 708 + - uid: 380 components: - type: Transform - pos: 28.5,10.5 + rot: -1.5707963267948966 rad + pos: 17.5,19.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 709 + - uid: 381 components: - type: Transform - pos: 27.5,9.5 + rot: -1.5707963267948966 rad + pos: 17.5,20.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 712 + - uid: 383 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,7.5 + rot: -1.5707963267948966 rad + pos: 20.5,9.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 713 + - uid: 385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,8.5 + rot: -1.5707963267948966 rad + pos: 34.5,9.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 714 + - uid: 386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,12.5 + rot: -1.5707963267948966 rad + pos: 23.5,10.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 718 + - uid: 387 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,17.5 + rot: -1.5707963267948966 rad + pos: 23.5,11.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 719 + - uid: 388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,17.5 + rot: -1.5707963267948966 rad + pos: 31.5,10.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 722 + - uid: 389 components: - type: Transform - pos: 26.5,19.5 + rot: -1.5707963267948966 rad + pos: 31.5,11.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 723 + - uid: 444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,20.5 + pos: 32.5,15.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 727 + - uid: 478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,24.5 + pos: 22.5,21.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 731 + - uid: 566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,8.5 + pos: 19.5,10.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 732 + - uid: 567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,9.5 + pos: 20.5,10.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 733 + - uid: 568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,9.5 + pos: 34.5,10.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 734 + - uid: 569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,9.5 + pos: 35.5,10.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 738 + - uid: 572 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,20.5 + pos: 32.5,18.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 739 + - uid: 573 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,19.5 + pos: 23.5,18.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 740 + - uid: 574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,18.5 + pos: 33.5,15.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 741 + - uid: 584 components: - type: Transform - pos: 32.5,19.5 + pos: 35.5,18.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeTJunction - entities: - - uid: 615 + - uid: 616 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,19.5 + pos: 20.5,32.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 632 + - uid: 682 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,11.5 + pos: 32.5,31.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 633 + - uid: 713 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,16.5 + pos: 33.5,17.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 634 + - uid: 714 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,18.5 + pos: 33.5,20.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 635 + - uid: 754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,23.5 + rot: -1.5707963267948966 rad + pos: 34.5,18.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 636 + - uid: 759 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,32.5 + pos: 33.5,21.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 696 + - uid: 760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,35.5 + pos: 33.5,19.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 716 + - uid: 775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,12.5 + pos: 32.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 717 + - uid: 776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,17.5 + pos: 30.5,34.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 725 + - uid: 777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,24.5 + pos: 30.5,35.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPort - entities: - - uid: 498 + - uid: 779 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,33.5 + pos: 32.5,30.5 parent: 1 - - uid: 499 + - uid: 780 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,33.5 + pos: 32.5,34.5 parent: 1 - - uid: 511 + - uid: 781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,20.5 + pos: 32.5,35.5 parent: 1 - - uid: 530 + - uid: 782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,18.5 + pos: 31.5,36.5 parent: 1 - - uid: 550 + - uid: 783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,32.5 + pos: 32.5,36.5 parent: 1 - - uid: 574 + - uid: 784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,32.5 + pos: 30.5,36.5 parent: 1 -- proto: GasPressurePump - entities: - - uid: 584 + - uid: 822 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,34.5 + pos: 31.5,33.5 parent: 1 - - uid: 585 + - uid: 825 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,32.5 + pos: 31.5,32.5 parent: 1 - - uid: 591 + - uid: 829 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,34.5 + rot: 1.5707963267948966 rad + pos: 30.5,33.5 parent: 1 - - uid: 596 + - uid: 837 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,32.5 + pos: 32.5,32.5 parent: 1 -- proto: GasVentPump - entities: - - uid: 616 + - uid: 839 components: - type: Transform - pos: 31.5,20.5 + pos: 31.5,19.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 617 + - uid: 844 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,18.5 + rot: 1.5707963267948966 rad + pos: 32.5,33.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 618 + - uid: 952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,16.5 + rot: 1.5707963267948966 rad + pos: 33.5,16.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 619 + - uid: 956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,23.5 + pos: 34.5,15.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 620 + - uid: 957 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,32.5 + pos: 31.5,18.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 621 + - uid: 991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,33.5 + rot: -1.5707963267948966 rad + pos: 21.5,21.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 622 + - uid: 992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,33.5 + pos: 33.5,18.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 623 + - uid: 1283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,37.5 + pos: 24.5,49.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 624 + - uid: 1284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,19.5 + pos: 30.5,49.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 625 + - uid: 1721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,11.5 + pos: 19.5,25.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 662 +- proto: CatwalkDarkTile + entities: + - uid: 115 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,6.5 + pos: 35.5,25.5 parent: 1 - - type: AtmosPipeColor - color: '#0000FFFF' -- proto: GasVentScrubber - entities: - - uid: 668 + - uid: 578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,34.5 + rot: 3.141592653589793 rad + pos: 24.5,18.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 669 + - uid: 623 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,34.5 + pos: 25.5,31.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 670 + - uid: 625 components: - type: Transform - pos: 26.5,37.5 + pos: 33.5,27.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 671 + - uid: 626 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,32.5 + pos: 33.5,26.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 672 + - uid: 627 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,23.5 + pos: 33.5,25.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 673 + - uid: 628 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,18.5 + pos: 33.5,24.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 674 + - uid: 629 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,16.5 + pos: 33.5,23.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 675 + - uid: 630 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,6.5 + rot: -1.5707963267948966 rad + pos: 34.5,27.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 676 + - uid: 631 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,11.5 + pos: 34.5,26.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 677 + - uid: 632 components: - type: Transform - pos: 32.5,20.5 + pos: 34.5,25.5 parent: 1 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GravityGeneratorMini - entities: - - uid: 500 + - uid: 633 components: - type: Transform - pos: 31.5,18.5 + pos: 34.5,24.5 parent: 1 -- proto: Grille - entities: - - uid: 218 + - uid: 634 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,39.5 + pos: 34.5,23.5 parent: 1 - - uid: 257 + - uid: 635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,39.5 + pos: 35.5,26.5 parent: 1 - - uid: 473 + - uid: 636 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,41.5 + pos: 37.5,23.5 parent: 1 - - uid: 475 + - uid: 637 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,41.5 + pos: 35.5,24.5 parent: 1 - - uid: 476 + - uid: 638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,41.5 + pos: 35.5,23.5 parent: 1 -- proto: GrilleDiagonal - entities: - - uid: 36 + - uid: 640 components: - type: Transform - pos: 22.5,39.5 + pos: 36.5,24.5 parent: 1 - - uid: 354 + - uid: 641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,39.5 + pos: 36.5,23.5 parent: 1 -- proto: Gyroscope - entities: - - uid: 152 + - uid: 643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,29.5 + rot: -1.5707963267948966 rad + pos: 34.5,28.5 parent: 1 - - uid: 155 + - uid: 654 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,27.5 + pos: 23.5,32.5 parent: 1 - - uid: 157 + - uid: 655 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,24.5 + pos: 23.5,30.5 parent: 1 - - uid: 161 + - uid: 656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,29.5 + pos: 27.5,12.5 parent: 1 - - uid: 163 + - uid: 657 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,27.5 + pos: 28.5,37.5 parent: 1 - - uid: 216 + - uid: 658 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,24.5 + pos: 27.5,37.5 parent: 1 -- proto: LockerWallMaterialsFuelAmeJarFilled - entities: - - uid: 532 + - uid: 659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,19.5 + rot: 1.5707963267948966 rad + pos: 21.5,28.5 parent: 1 -- proto: MachineAnomalyGenerator - entities: - - uid: 356 + - uid: 660 components: - type: Transform - pos: 27.5,26.5 + rot: 1.5707963267948966 rad + pos: 21.5,34.5 parent: 1 -- proto: MachineAnomalyVessel - entities: - - uid: 517 + - uid: 661 components: - type: Transform - pos: 31.5,27.5 + rot: 1.5707963267948966 rad + pos: 26.5,37.5 parent: 1 - - uid: 519 + - uid: 663 components: - type: Transform - pos: 31.5,28.5 + rot: 1.5707963267948966 rad + pos: 26.5,12.5 parent: 1 -- proto: MachineAPE - entities: - - uid: 495 + - uid: 665 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,24.5 + pos: 28.5,12.5 parent: 1 - - uid: 1116 + - uid: 666 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,23.5 + pos: 26.5,6.5 parent: 1 -- proto: MachineArtifactAnalyzer - entities: - - uid: 533 + - uid: 667 components: - type: Transform - pos: 33.5,34.5 + rot: 1.5707963267948966 rad + pos: 27.5,6.5 parent: 1 - - uid: 564 + - uid: 668 components: - type: Transform - pos: 21.5,34.5 + rot: 1.5707963267948966 rad + pos: 28.5,6.5 parent: 1 -- proto: MachineArtifactCrusher - entities: - - uid: 453 + - uid: 669 components: - type: Transform - pos: 30.5,35.5 + rot: 1.5707963267948966 rad + pos: 26.5,4.5 parent: 1 - - uid: 455 + - uid: 670 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,4.5 + parent: 1 + - uid: 671 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,4.5 + parent: 1 + - uid: 673 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,18.5 + parent: 1 + - uid: 674 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,19.5 + parent: 1 + - uid: 675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,20.5 + parent: 1 + - uid: 678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,19.5 + parent: 1 + - uid: 679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,25.5 + parent: 1 + - uid: 680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,22.5 + parent: 1 + - uid: 681 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,22.5 + parent: 1 + - uid: 699 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,16.5 + parent: 1 + - uid: 706 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1 + - uid: 707 + components: + - type: Transform + pos: 27.5,20.5 + parent: 1 + - uid: 792 + components: + - type: Transform + pos: 23.5,41.5 + parent: 1 + - uid: 793 + components: + - type: Transform + pos: 24.5,41.5 + parent: 1 + - uid: 794 + components: + - type: Transform + pos: 30.5,41.5 + parent: 1 + - uid: 795 + components: + - type: Transform + pos: 31.5,41.5 + parent: 1 + - uid: 884 + components: + - type: Transform + pos: 28.5,20.5 + parent: 1 + - uid: 1165 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,15.5 + parent: 1 + - uid: 1166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 1 + - uid: 1167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,10.5 + parent: 1 + - uid: 1168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,9.5 + parent: 1 + - uid: 1169 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,8.5 + parent: 1 + - uid: 1170 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,10.5 + parent: 1 + - uid: 1171 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,9.5 + parent: 1 + - uid: 1172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,8.5 + parent: 1 + - uid: 1427 + components: + - type: Transform + pos: 22.5,31.5 + parent: 1 + - uid: 1438 + components: + - type: Transform + pos: 24.5,39.5 + parent: 1 + - uid: 1439 + components: + - type: Transform + pos: 30.5,39.5 + parent: 1 +- proto: CatwalkSteelTile + entities: + - uid: 582 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,17.5 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: 27.5,9.5 + parent: 1 + - uid: 772 + components: + - type: Transform + pos: 27.5,16.5 + parent: 1 + - uid: 773 + components: + - type: Transform + pos: 27.5,18.5 + parent: 1 + - uid: 889 + components: + - type: Transform + pos: 27.5,15.5 + parent: 1 +- proto: CatwalkWhiteTile + entities: + - uid: 100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,22.5 + parent: 1 + - uid: 143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,34.5 + parent: 1 + - uid: 156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,32.5 + parent: 1 + - uid: 734 + components: + - type: Transform + pos: 27.5,24.5 + parent: 1 + - uid: 821 + components: + - type: Transform + pos: 27.5,26.5 + parent: 1 + - uid: 851 + components: + - type: Transform + pos: 27.5,27.5 + parent: 1 + - uid: 852 + components: + - type: Transform + pos: 27.5,25.5 + parent: 1 + - uid: 858 + components: + - type: Transform + pos: 27.5,28.5 + parent: 1 + - uid: 859 + components: + - type: Transform + pos: 27.5,29.5 + parent: 1 + - uid: 860 + components: + - type: Transform + pos: 27.5,30.5 + parent: 1 + - uid: 861 + components: + - type: Transform + pos: 27.5,31.5 + parent: 1 + - uid: 862 + components: + - type: Transform + pos: 27.5,32.5 + parent: 1 + - uid: 865 + components: + - type: Transform + pos: 28.5,24.5 + parent: 1 + - uid: 866 + components: + - type: Transform + pos: 28.5,26.5 + parent: 1 + - uid: 867 + components: + - type: Transform + pos: 28.5,27.5 + parent: 1 + - uid: 868 + components: + - type: Transform + pos: 28.5,28.5 + parent: 1 + - uid: 869 + components: + - type: Transform + pos: 28.5,29.5 + parent: 1 + - uid: 871 + components: + - type: Transform + pos: 28.5,30.5 + parent: 1 + - uid: 872 + components: + - type: Transform + pos: 28.5,31.5 + parent: 1 + - uid: 873 + components: + - type: Transform + pos: 28.5,25.5 + parent: 1 +- proto: ChairOfficeLight + entities: + - uid: 919 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.41066,28.713957 + parent: 1 + - uid: 928 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.53566,34.698334 + parent: 1 + - uid: 985 + components: + - type: Transform + pos: 23.413889,38.562286 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 1654 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,39.5 + parent: 1 + - uid: 1655 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,39.5 + parent: 1 + - uid: 1656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,39.5 + parent: 1 +- proto: CircuitImprinter + entities: + - uid: 846 + components: + - type: Transform + pos: 25.5,22.5 + parent: 1 +- proto: ClothingOuterHardsuitSalvage + entities: + - uid: 804 + components: + - type: Transform + parent: 764 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComfyChair + entities: + - uid: 561 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,14.5 + parent: 1 +- proto: ComputerFrame + entities: + - uid: 277 + components: + - type: Transform + pos: 29.5,24.5 + parent: 1 +- proto: ComputerGunneryConsole + entities: + - uid: 949 + components: + - type: Transform + pos: 25.5,40.5 + parent: 1 +- proto: ComputerPowerMonitoring + entities: + - uid: 942 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,20.5 + parent: 1 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 1114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 1 +- proto: ComputerTabletopAnalysisConsole + entities: + - uid: 700 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,28.5 + parent: 1 + - type: AnalysisConsole + analyzerEntity: 774 + - type: DeviceLinkSource + linkedPorts: + 774: + - - ArtifactAnalyzerSender + - ArtifactAnalyzerReceiver + - uid: 893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,34.5 + parent: 1 + - type: AnalysisConsole + analyzerEntity: 778 + - type: DeviceLinkSource + linkedPorts: + 778: + - - ArtifactAnalyzerSender + - ArtifactAnalyzerReceiver +- proto: ComputerTabletopPowerMonitoring + entities: + - uid: 1659 + components: + - type: Transform + pos: 29.5,40.5 + parent: 1 +- proto: ComputerTabletopRadar + entities: + - uid: 951 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 1 + - uid: 1175 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,10.5 + parent: 1 + - uid: 1176 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,10.5 + parent: 1 + - uid: 1663 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,39.5 + parent: 1 +- proto: ComputerTabletopShuttle + entities: + - uid: 818 + components: + - type: Transform + pos: 27.5,40.5 + parent: 1 +- proto: ComputerTabletopSolarControl + entities: + - uid: 925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,19.5 + parent: 1 +- proto: ComputerTabletopStationRecords + entities: + - uid: 1661 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,39.5 + parent: 1 +- proto: ConveyorBelt + entities: + - uid: 369 + components: + - type: Transform + pos: 33.5,22.5 + parent: 1 + - uid: 739 + components: + - type: Transform + pos: 33.5,23.5 + parent: 1 + - uid: 740 + components: + - type: Transform + pos: 33.5,24.5 + parent: 1 + - uid: 741 + components: + - type: Transform + pos: 33.5,27.5 + parent: 1 + - uid: 742 + components: + - type: Transform + pos: 33.5,25.5 + parent: 1 + - uid: 743 + components: + - type: Transform + pos: 33.5,26.5 + parent: 1 + - uid: 748 + components: + - type: Transform + pos: 33.5,21.5 + parent: 1 + - uid: 749 + components: + - type: Transform + pos: 35.5,16.5 + parent: 1 + - uid: 750 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,14.5 + parent: 1 + - uid: 751 + components: + - type: Transform + pos: 35.5,15.5 + parent: 1 + - uid: 752 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,14.5 + parent: 1 + - uid: 753 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,14.5 + parent: 1 +- proto: CrateArtifactContainer + entities: + - uid: 835 + components: + - type: Transform + pos: 32.5,31.5 + parent: 1 + - uid: 836 + components: + - type: Transform + pos: 32.5,30.5 + parent: 1 + - uid: 890 + components: + - type: Transform + pos: 35.5,19.5 + parent: 1 + - uid: 891 + components: + - type: Transform + pos: 35.5,18.5 + parent: 1 +- proto: CrateBaseSecure + entities: + - uid: 757 + components: + - type: Transform + pos: 35.5,20.5 + parent: 1 +- proto: CrateEngineeringSecure + entities: + - uid: 764 + components: + - type: Transform + pos: 32.5,14.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + 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: + - 801 + - 803 + - 804 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CratePlasma + entities: + - uid: 1138 + components: + - type: Transform + pos: 21.5,18.5 + parent: 1 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + 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: + - 1140 + - 1139 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateScience + entities: + - uid: 294 + components: + - type: Transform + pos: 29.5,29.5 + parent: 1 +- proto: CrateScienceSecure + entities: + - uid: 257 + components: + - type: Transform + pos: 29.5,27.5 + parent: 1 + - uid: 810 + components: + - type: Transform + pos: 28.5,22.5 + parent: 1 + - uid: 853 + components: + - type: Transform + pos: 29.5,28.5 + parent: 1 +- proto: CurtainsCyanOpen + entities: + - uid: 964 + components: + - type: Transform + pos: 21.5,24.5 + parent: 1 +- proto: DefibrillatorCabinet + entities: + - uid: 1113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,23.5 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 1002 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,20.5 + parent: 1 + - uid: 1003 + components: + - type: Transform + pos: 31.5,16.5 + parent: 1 + - uid: 1159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 1 + - uid: 1160 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,14.5 + parent: 1 + - uid: 1219 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,5.5 + parent: 1 + - uid: 1287 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,21.5 + parent: 1 + - uid: 1486 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,21.5 + parent: 1 + - uid: 1487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,21.5 + parent: 1 + - uid: 1488 + components: + - type: Transform + pos: 25.5,29.5 + parent: 1 + - uid: 1489 + components: + - type: Transform + pos: 25.5,35.5 + parent: 1 + - uid: 1490 + components: + - type: Transform + pos: 23.5,35.5 + parent: 1 + - uid: 1491 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,27.5 + parent: 1 + - uid: 1492 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,34.5 + parent: 1 + - uid: 1493 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,38.5 + parent: 1 + - uid: 1494 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,38.5 + parent: 1 +- proto: ExosuitFabricator + entities: + - uid: 712 + components: + - type: Transform + pos: 25.5,21.5 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 1710 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,13.5 + parent: 1 + - uid: 1711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,20.5 + parent: 1 +- proto: FaxMachineShip + entities: + - uid: 1653 + components: + - type: Transform + pos: 28.5,40.5 + parent: 1 +- proto: filingCabinetRandom + entities: + - uid: 526 + components: + - type: Transform + pos: 23.5,15.5 + parent: 1 + - uid: 863 + components: + - type: Transform + pos: 23.5,14.5 + parent: 1 +- proto: FirelockEdge + entities: + - uid: 972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,14.5 + parent: 1 + - uid: 973 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,14.5 + parent: 1 +- proto: FirelockGlass + entities: + - uid: 701 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,16.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1191 + - uid: 719 + components: + - type: Transform + pos: 30.5,18.5 + parent: 1 + - uid: 720 + components: + - type: Transform + pos: 30.5,19.5 + parent: 1 + - uid: 723 + components: + - type: Transform + pos: 24.5,18.5 + parent: 1 + - uid: 724 + components: + - type: Transform + pos: 24.5,19.5 + parent: 1 + - uid: 725 + components: + - type: Transform + pos: 26.5,6.5 + parent: 1 + - uid: 726 + components: + - type: Transform + pos: 27.5,6.5 + parent: 1 + - uid: 727 + components: + - type: Transform + pos: 28.5,6.5 + parent: 1 + - uid: 728 + components: + - type: Transform + pos: 26.5,12.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1191 + - uid: 729 + components: + - type: Transform + pos: 27.5,12.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1191 + - uid: 730 + components: + - type: Transform + pos: 28.5,12.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1191 + - uid: 731 + components: + - type: Transform + pos: 26.5,37.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1497 + - uid: 732 + components: + - type: Transform + pos: 27.5,37.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1497 + - uid: 733 + components: + - type: Transform + pos: 28.5,37.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1497 + - uid: 838 + components: + - type: Transform + pos: 26.5,20.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1497 + - uid: 885 + components: + - type: Transform + pos: 27.5,20.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1497 + - uid: 886 + components: + - type: Transform + pos: 28.5,20.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1497 + - uid: 888 + components: + - type: Transform + pos: 25.5,31.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1497 + - uid: 933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,25.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1497 +- proto: Floodlight + entities: + - uid: 1103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.568382,21.117723 + parent: 1 +- proto: FloodlightBroken + entities: + - uid: 1104 + components: + - type: Transform + pos: 35.412132,26.398973 + parent: 1 +- proto: FloorDrain + entities: + - uid: 577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,23.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 955 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,25.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: ForgeAmmoDrum20mmBase + entities: + - uid: 1724 + components: + - type: Transform + parent: 1723 + - type: Physics + canCollide: False +- proto: GasMixerOn + entities: + - uid: 677 + components: + - type: Transform + pos: 22.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasOutletInjector + entities: + - uid: 856 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasPassiveVent + entities: + - uid: 710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 711 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 1455 + components: + - type: Transform + pos: 23.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1456 + components: + - type: Transform + pos: 31.5,44.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 882 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1006 + components: + - type: Transform + pos: 34.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1108 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1128 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1229 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 21.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1386 + components: + - type: Transform + pos: 28.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1426 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeBendAlt1 + entities: + - uid: 1007 + components: + - type: Transform + pos: 32.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1126 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1255 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1308 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1309 + components: + - type: Transform + pos: 22.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1407 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 1221 + components: + - type: Transform + pos: 28.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeFourwayAlt1 + entities: + - uid: 1251 + components: + - type: Transform + pos: 27.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeManifold + entities: + - uid: 894 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 895 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 896 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 897 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 905 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 909 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 1450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,38.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 900 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 904 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 908 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 1008 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1011 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1132 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1220 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1222 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1227 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1228 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1237 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1294 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1297 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1302 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1305 + components: + - type: Transform + pos: 22.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1306 + components: + - type: Transform + pos: 22.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1317 + components: + - type: Transform + pos: 28.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1410 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1411 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1413 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1414 + components: + - type: Transform + pos: 27.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1415 + components: + - type: Transform + pos: 27.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1416 + components: + - type: Transform + pos: 27.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1417 + components: + - type: Transform + pos: 27.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1418 + components: + - type: Transform + pos: 27.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1419 + components: + - type: Transform + pos: 27.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1420 + components: + - type: Transform + pos: 27.5,32.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1421 + components: + - type: Transform + pos: 27.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1422 + components: + - type: Transform + pos: 27.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1423 + components: + - type: Transform + pos: 27.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1424 + components: + - type: Transform + pos: 27.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1440 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1441 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,40.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1444 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,41.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1445 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,42.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1446 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,43.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1447 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1449 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1452 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraightAlt1 + entities: + - uid: 898 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 899 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 906 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 907 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 1012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1129 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1131 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1249 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 28.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1252 + components: + - type: Transform + pos: 27.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1257 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1258 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1259 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1261 + components: + - type: Transform + pos: 27.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1262 + components: + - type: Transform + pos: 27.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1263 + components: + - type: Transform + pos: 27.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1264 + components: + - type: Transform + pos: 27.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1265 + components: + - type: Transform + pos: 27.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1266 + components: + - type: Transform + pos: 27.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1267 + components: + - type: Transform + pos: 27.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1268 + components: + - type: Transform + pos: 27.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1298 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1311 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1316 + components: + - type: Transform + pos: 27.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1389 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1390 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1394 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1395 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,26.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1396 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1397 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,28.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1398 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1399 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,30.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,31.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1401 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,32.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1402 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1403 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,34.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1404 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,36.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraightAlt2 + entities: + - uid: 902 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 903 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 910 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 911 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasPipeTJunction + entities: + - uid: 1223 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1235 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1307 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1406 + components: + - type: Transform + pos: 27.5,39.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1408 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 27.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1409 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunctionAlt1 + entities: + - uid: 1253 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1270 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,25.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1454 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,37.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 817 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 841 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 1314 + components: + - type: Transform + pos: 21.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1315 + components: + - type: Transform + pos: 22.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPressurePump + entities: + - uid: 935 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,29.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,27.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasPressurePumpOn + entities: + - uid: 936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,35.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 941 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,33.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasVentPump + entities: + - uid: 843 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1125 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1231 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1232 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,14.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1191 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1191 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1234 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1191 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1304 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1382 + components: + - type: Transform + pos: 28.5,38.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1497 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1383 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,21.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1497 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 557 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - type: AtmosPipeLayers + pipeLayer: Secondary + - uid: 1127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,24.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - type: AtmosPipeLayers + pipeLayer: Secondary + - uid: 1245 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,14.5 + parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1246 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,14.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1191 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1247 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1191 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1191 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1303 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,21.5 + parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,21.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1497 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 1385 + components: + - type: Transform + pos: 26.5,38.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1497 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' +- proto: Gauze1 + entities: + - uid: 1119 + components: + - type: Transform + parent: 1118 + - type: Stack + count: 3 + - type: Physics + canCollide: False + - uid: 1120 + components: + - type: Transform + parent: 1118 + - type: Physics + canCollide: False +- proto: GravityGeneratorMini + entities: + - uid: 917 + components: + - type: Transform + pos: 23.5,20.5 + parent: 1 +- proto: Grille + entities: + - uid: 8 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,41.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 18.5,18.5 + parent: 1 + - uid: 98 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 27.5,41.5 + parent: 1 + - uid: 99 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 1 + - uid: 103 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,41.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,42.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,19.5 + parent: 1 + - uid: 106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,21.5 + parent: 1 + - uid: 107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,43.5 + parent: 1 + - uid: 110 + components: + - type: Transform + pos: 39.5,21.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,39.5 + parent: 1 + - uid: 112 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 19.5,40.5 + parent: 1 + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,18.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,43.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: 39.5,15.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,9.5 + parent: 1 + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 34.5,9.5 + parent: 1 + - uid: 144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,11.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,17.5 + parent: 1 + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,16.5 + parent: 1 + - uid: 149 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,11.5 + parent: 1 + - uid: 150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 18.5,19.5 + parent: 1 + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,39.5 + parent: 1 + - uid: 157 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,19.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,20.5 + parent: 1 + - uid: 223 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,41.5 + parent: 1 + - uid: 224 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,18.5 + parent: 1 + - uid: 232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,15.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,20.5 + parent: 1 + - uid: 240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,32.5 + parent: 1 + - uid: 244 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,13.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: 39.5,16.5 + parent: 1 + - uid: 255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,40.5 + parent: 1 + - uid: 258 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,18.5 + parent: 1 + - uid: 259 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,41.5 + parent: 1 + - uid: 266 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,17.5 + parent: 1 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.5,31.5 + parent: 1 + - uid: 269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,19.5 + parent: 1 + - uid: 271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,22.5 + parent: 1 + - uid: 276 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,42.5 + parent: 1 + - uid: 292 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,40.5 + parent: 1 + - uid: 320 + components: + - type: Transform + pos: 39.5,13.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 39.5,22.5 + parent: 1 + - uid: 349 + components: + - type: Transform + pos: 39.5,14.5 + parent: 1 + - uid: 786 + components: + - type: Transform + pos: 24.5,27.5 + parent: 1 + - uid: 787 + components: + - type: Transform + pos: 24.5,28.5 + parent: 1 + - uid: 788 + components: + - type: Transform + pos: 24.5,29.5 + parent: 1 + - uid: 789 + components: + - type: Transform + pos: 24.5,33.5 + parent: 1 + - uid: 790 + components: + - type: Transform + pos: 24.5,34.5 + parent: 1 + - uid: 791 + components: + - type: Transform + pos: 24.5,35.5 + parent: 1 + - uid: 878 + components: + - type: Transform + pos: 22.5,39.5 + parent: 1 + - uid: 880 + components: + - type: Transform + pos: 32.5,39.5 + parent: 1 + - uid: 1109 + components: + - type: Transform + pos: 22.5,40.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 9 + components: + - type: Transform + pos: 28.5,42.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,12.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,23.5 + parent: 1 + - uid: 136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,44.5 + parent: 1 + - uid: 140 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,9.5 + parent: 1 + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,38.5 + parent: 1 + - uid: 237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,42.5 + parent: 1 + - uid: 260 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,38.5 + parent: 1 + - uid: 261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 15.5,12.5 + parent: 1 + - uid: 272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,9.5 + parent: 1 + - uid: 273 + components: + - type: Transform + pos: 19.5,44.5 + parent: 1 + - uid: 653 + components: + - type: Transform + pos: 15.5,23.5 + parent: 1 +- proto: GunneryServerLow + entities: + - uid: 811 + components: + - type: Transform + pos: 23.5,21.5 + parent: 1 + - type: Battery + startingCharge: 0 + - type: ApcPowerReceiver + powerLoad: 5 +- proto: Gyroscope + entities: + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,42.5 + parent: 1 + - uid: 296 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 23.5,42.5 + parent: 1 + - uid: 737 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,42.5 + parent: 1 + - uid: 738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,42.5 + parent: 1 +- proto: HandheldArtifactContainer + entities: + - uid: 845 + components: + - type: Transform + pos: 32.53515,32.607742 + parent: 1 +- proto: HospitalCurtainsOpen + entities: + - uid: 1478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 22.5,24.5 + parent: 1 + - uid: 1480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,24.5 + parent: 1 +- proto: LockerResearchDirectorFilledHardsuit + entities: + - uid: 987 + components: + - type: Transform + pos: 24.24566,37.499786 + parent: 1 +- proto: LockerWallColorMedical + entities: + - uid: 1117 + components: + - type: Transform + pos: 22.5,26.5 + parent: 1 +- proto: LockerWallColorSalvage + entities: + - uid: 965 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,15.5 + parent: 1 + - uid: 967 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 30.5,14.5 + parent: 1 +- proto: MachineAnomalyGenerator + entities: + - uid: 785 + components: + - type: Transform + pos: 31.5,35.5 + parent: 1 +- proto: MachineAnomalyVessel + entities: + - uid: 820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,34.5 + parent: 1 + - uid: 850 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,34.5 + parent: 1 +- proto: MachineAPE + entities: + - uid: 33 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,31.5 + parent: 1 + - uid: 101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,30.5 + parent: 1 +- proto: MachineArtifactAnalyzer + entities: + - uid: 774 + components: + - type: Transform + pos: 22.5,28.5 + parent: 1 + - uid: 778 + components: + - type: Transform + pos: 22.5,34.5 + parent: 1 +- proto: MachineFrame + entities: + - uid: 191 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,25.5 + parent: 1 + - uid: 285 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 29.5,26.5 + parent: 1 + - uid: 847 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,27.5 + parent: 1 +- proto: MachineMaterialSilo + entities: + - uid: 747 + components: + - type: Transform + pos: 33.5,14.5 + parent: 1 +- proto: MaterialReclaimer + entities: + - uid: 746 + components: + - type: Transform + pos: 34.5,14.5 + parent: 1 +- proto: MedicalBed + entities: + - uid: 983 + components: + - type: Transform + pos: 23.5,24.5 + parent: 1 + - uid: 984 + components: + - type: Transform + pos: 22.5,24.5 + parent: 1 +- proto: Mirror + entities: + - uid: 976 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,23.5 + parent: 1 +- proto: NFHolopadShip + entities: + - uid: 813 + components: + - type: Transform + pos: 27.5,38.5 + parent: 1 +- proto: NFLockerScienceFilled + entities: + - uid: 988 + components: + - type: Transform + pos: 24.74566,37.48416 + parent: 1 +- proto: NFMagnetBoxOre + entities: + - uid: 705 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,20.5 + parent: 1 +- proto: NFScrapSilverApc + entities: + - uid: 1344 + components: + - type: Transform + pos: 20.826817,21.718788 + parent: 1 +- proto: NFSignEms1 + entities: + - uid: 1115 + components: + - type: Transform + pos: 25.5,26.5 + parent: 1 +- proto: NitrogenCanister + entities: + - uid: 926 + components: + - type: Transform + anchored: True + pos: 21.5,22.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: Ointment + entities: + - uid: 1121 + components: + - type: Transform + parent: 1118 + - type: Physics + canCollide: False +- proto: OreBag + entities: + - uid: 968 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.544315,16.490948 + parent: 1 + - type: CollisionWake + enabled: False + - type: Conveyed + - uid: 970 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.59119,16.584698 + parent: 1 + - type: CollisionWake + enabled: False + - type: Conveyed +- proto: OreProcessor + entities: + - uid: 716 + components: + - type: Transform + pos: 35.5,15.5 + parent: 1 +- proto: OxygenCanister + entities: + - uid: 924 + components: + - type: Transform + anchored: True + pos: 22.5,22.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: PaperBin5 + entities: + - uid: 1652 + components: + - type: Transform + pos: 26.5,40.5 + parent: 1 +- proto: Pickaxe + entities: + - uid: 962 + components: + - type: Transform + parent: 715 + - type: Physics + canCollide: False + - uid: 963 + components: + - type: Transform + parent: 715 + - type: Physics + canCollide: False +- proto: PlasmaOre1 + entities: + - uid: 1049 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.490257,27.461473 + parent: 1 + - type: CollisionWake + enabled: False + - type: Conveyed + - uid: 1093 + components: + - type: Transform + pos: 33.615257,26.164598 + parent: 1 + - type: CollisionWake + enabled: False + - type: Conveyed + - uid: 1096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.552757,24.445848 + parent: 1 + - type: CollisionWake + enabled: False + - type: Conveyed + - uid: 1097 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.630882,24.086473 + parent: 1 + - type: CollisionWake + enabled: False + - type: Conveyed + - uid: 1098 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 33.662132,23.305223 + parent: 1 + - type: CollisionWake + enabled: False + - type: Conveyed +- proto: PlasticFlapsAirtightOpaque + entities: + - uid: 696 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,22.5 + parent: 1 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 1289 + components: + - type: Transform + pos: 23.5,22.5 + parent: 1 +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,22.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,20.5 + parent: 1 + - uid: 1000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,18.5 + parent: 1 + - uid: 1001 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,15.5 + parent: 1 + - uid: 1149 + components: + - type: Transform + pos: 31.5,42.5 + parent: 1 + - uid: 1152 + components: + - type: Transform + pos: 24.5,16.5 + parent: 1 + - uid: 1155 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 28.5,13.5 + parent: 1 + - uid: 1156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,13.5 + parent: 1 + - uid: 1157 + components: + - type: Transform + pos: 29.5,19.5 + parent: 1 + - uid: 1158 + components: + - type: Transform + pos: 25.5,19.5 + parent: 1 + - uid: 1218 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 26.5,5.5 + parent: 1 + - uid: 1271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,9.5 + parent: 1 + - uid: 1272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,9.5 + parent: 1 + - uid: 1286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,18.5 + parent: 1 + - uid: 1470 + components: + - type: Transform + pos: 25.5,23.5 + parent: 1 + - uid: 1471 + components: + - type: Transform + pos: 31.5,23.5 + parent: 1 + - uid: 1472 + components: + - type: Transform + pos: 31.5,28.5 + parent: 1 + - uid: 1473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,14.5 + parent: 1 + - uid: 1475 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,33.5 + parent: 1 + - uid: 1479 + components: + - type: Transform + pos: 21.5,25.5 + parent: 1 + - uid: 1481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,31.5 + parent: 1 + - uid: 1482 + components: + - type: Transform + pos: 29.5,40.5 + parent: 1 + - uid: 1483 + components: + - type: Transform + pos: 25.5,40.5 + parent: 1 + - uid: 1485 + components: + - type: Transform + pos: 23.5,42.5 + parent: 1 +- proto: PoweredlightExterior + entities: + - uid: 1476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,27.5 + parent: 1 + - uid: 1477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,33.5 + parent: 1 +- proto: PoweredlightOrange + entities: + - uid: 1091 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,25.5 + parent: 1 + - uid: 1092 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,16.5 + parent: 1 + - uid: 1105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 36.5,23.5 + parent: 1 + - uid: 1474 + components: + - type: Transform + pos: 21.5,22.5 + parent: 1 +- proto: PoweredlightPink + entities: + - uid: 20 + components: + - type: Transform + pos: 20.5,12.5 + parent: 1 + - uid: 451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,32.5 + parent: 1 + - uid: 769 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,17.5 + parent: 1 + - uid: 870 + components: + - type: Transform + pos: 32.5,12.5 + parent: 1 + - uid: 874 + components: + - type: Transform + pos: 22.5,12.5 + parent: 1 + - uid: 1110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,17.5 + parent: 1 + - uid: 1143 + components: + - type: Transform + pos: 34.5,12.5 + parent: 1 + - uid: 1285 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,29.5 + parent: 1 + - uid: 1457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 20.5,35.5 + parent: 1 + - uid: 1458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,47.5 + parent: 1 + - uid: 1459 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,32.5 + parent: 1 + - uid: 1460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 34.5,35.5 + parent: 1 + - uid: 1461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 24.5,47.5 + parent: 1 + - uid: 1462 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,41.5 + parent: 1 + - uid: 1463 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,41.5 + parent: 1 +- proto: Protolathe + entities: + - uid: 824 + components: + - type: Transform + pos: 31.5,26.5 + parent: 1 +- proto: RandomPosterAny + entities: + - uid: 718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 31.5,17.5 + parent: 1 + - uid: 923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 32.5,22.5 + parent: 1 + - uid: 996 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,15.5 + parent: 1 + - uid: 997 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,13.5 + parent: 1 + - uid: 1102 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,28.5 + parent: 1 + - uid: 1123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 20.5,24.5 + parent: 1 + - uid: 1153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 22.5,14.5 + parent: 1 + - uid: 1154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,17.5 + parent: 1 + - uid: 1273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,5.5 + parent: 1 + - uid: 1274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.5,7.5 + parent: 1 + - uid: 1275 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,13.5 + parent: 1 + - uid: 1288 + components: + - type: Transform + pos: 18.5,17.5 + parent: 1 + - uid: 1464 + components: + - type: Transform + pos: 31.5,24.5 + parent: 1 + - uid: 1465 + components: + - type: Transform + pos: 25.5,30.5 + parent: 1 + - uid: 1466 + components: + - type: Transform + pos: 29.5,34.5 + parent: 1 + - uid: 1467 + components: + - type: Transform + pos: 25.5,37.5 + parent: 1 + - uid: 1468 + components: + - type: Transform + pos: 32.5,38.5 + parent: 1 + - uid: 1469 + components: + - type: Transform + pos: 22.5,42.5 + parent: 1 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 676 + components: + - type: Transform + pos: 31.5,28.5 + parent: 1 +- proto: ScrapGlass + entities: + - uid: 1666 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.292227,37.55742 + parent: 1 +- proto: ScrapProcessor + entities: + - uid: 744 + components: + - type: Transform + pos: 35.5,14.5 + parent: 1 +- proto: Screwdriver + entities: + - uid: 1665 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.761978,37.581882 + parent: 1 +- proto: SeismicCharge + entities: + - uid: 801 + components: + - type: Transform + parent: 764 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 803 + components: + - type: Transform + parent: 764 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SerpentMothershipComputer + entities: + - uid: 1161 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,9.5 + parent: 1 + - uid: 1162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,9.5 + parent: 1 +- proto: ShelfRGlass + entities: + - uid: 1118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 20.5,25.5 + parent: 1 + - type: Storage + storedItems: + 1119: + position: 2,0 + _rotation: South + 1120: + position: 1,3 + _rotation: South + 1121: + position: 0,0 + _rotation: South + 1122: + position: 3,3 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1119 + - 1120 + - 1121 + - 1122 +- proto: ShuttersNormal + entities: + - uid: 796 + components: + - type: Transform + pos: 23.5,41.5 + parent: 1 + - uid: 797 + components: + - type: Transform + pos: 24.5,41.5 + parent: 1 + - uid: 798 + components: + - type: Transform + pos: 30.5,41.5 + parent: 1 + - uid: 799 + components: + - type: Transform + pos: 31.5,41.5 + parent: 1 +- proto: ShuttleWindowPlasma + entities: + - uid: 19 + components: + - type: Transform + pos: 32.5,40.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 36.5,18.5 + parent: 1 + - uid: 69 + components: + - type: Transform + pos: 33.5,31.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: 33.5,32.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: 26.5,41.5 + parent: 1 + - uid: 109 + components: + - type: Transform + pos: 24.5,33.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 27.5,41.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: 36.5,19.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: 18.5,19.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 24.5,34.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 24.5,29.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 24.5,28.5 + parent: 1 + - uid: 250 + components: + - type: Transform + pos: 28.5,41.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 18.5,18.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: 24.5,27.5 + parent: 1 + - uid: 394 components: - type: Transform pos: 24.5,35.5 parent: 1 -- proto: MachineFrame + - uid: 695 + components: + - type: Transform + pos: 22.5,39.5 + parent: 1 + - uid: 709 + components: + - type: Transform + pos: 22.5,40.5 + parent: 1 + - uid: 807 + components: + - type: Transform + pos: 32.5,39.5 + parent: 1 +- proto: ShuttleWindowPlasmaDiagonal + entities: + - uid: 2 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 26.5,42.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 28.5,42.5 + parent: 1 +- proto: SignalButton + entities: + - uid: 969 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,28.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 815: + - - Pressed + - Toggle + - uid: 971 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,34.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 816: + - - Pressed + - Toggle +- proto: SignalButtonWindows + entities: + - uid: 585 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.514404,17.716858 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 749: + - - Pressed + - Forward + 751: + - - Pressed + - Forward + 750: + - - Pressed + - Forward + 752: + - - Pressed + - Forward + 753: + - - Pressed + - Forward + - uid: 672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,15.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1717: + - - Pressed + - Toggle + 1718: + - - Pressed + - Toggle + 1719: + - - Pressed + - Toggle + 1714: + - - Pressed + - Toggle + 1715: + - - Pressed + - Toggle + 1716: + - - Pressed + - Toggle + - uid: 756 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.514404,17.281807 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 750: + - - Pressed + - Off + 752: + - - Pressed + - Off + 753: + - - Pressed + - Off + 749: + - - Pressed + - Off + 751: + - - Pressed + - Off + - uid: 770 + components: + - type: Transform + pos: 32.5,20.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 950: + - - Pressed + - Toggle + 979: + - - Pressed + - Toggle + - uid: 966 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,13.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 979: + - - Pressed + - Toggle + 950: + - - Pressed + - Toggle + - uid: 990 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.498978,38.123787 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 796: + - - Pressed + - Toggle + 797: + - - Pressed + - Toggle + 798: + - - Pressed + - Toggle + 799: + - - Pressed + - Toggle + - uid: 1141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.5,19.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1137: + - - Pressed + - Toggle + 1142: + - - Pressed + - Toggle + - uid: 1356 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,21.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 767: + - - Pressed + - Toggle + 765: + - - Pressed + - Toggle + 766: + - - Pressed + - Toggle + - uid: 1609 + components: + - type: Transform + pos: 27.5,40.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1604: + - - Pressed + - Toggle + 1605: + - - Pressed + - Toggle + 1601: + - - Pressed + - Toggle + 1602: + - - Pressed + - Toggle + 1603: + - - Pressed + - Toggle + 1607: + - - Pressed + - Toggle + 1606: + - - Pressed + - Toggle + - uid: 1660 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 28.5,40.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 798: + - - Pressed + - Toggle + 799: + - - Pressed + - Toggle + 797: + - - Pressed + - Toggle + 796: + - - Pressed + - Toggle +- proto: SignDirectionalBridge entities: - - uid: 516 + - uid: 1648 components: - type: Transform - pos: 23.5,28.5 + rot: 3.141592653589793 rad + pos: 29.5,35.5 parent: 1 -- proto: MachineMaterialSilo +- proto: SignDirectionalEng entities: - - uid: 505 + - uid: 1647 components: - type: Transform - pos: 32.5,15.5 + rot: -1.5707963267948966 rad + pos: 25.5,17.5 parent: 1 -- proto: MaterialReclaimer +- proto: SignDirectionalMed entities: - - uid: 504 + - uid: 1112 components: - type: Transform - pos: 31.5,14.5 + rot: -1.5707963267948966 rad + pos: 25.5,24.5 parent: 1 -- proto: NFHolopadShip +- proto: SignDirectionalSalvage entities: - - uid: 537 + - uid: 1650 components: - type: Transform - pos: 29.5,37.5 + rot: 1.5707963267948966 rad + pos: 29.5,20.5 parent: 1 -- proto: NitrogenCanister +- proto: SignDirectionalSci entities: - - uid: 521 + - uid: 1649 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,12.5 + parent: 1 +- proto: Sink + entities: + - uid: 977 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 31.5,23.5 + parent: 1 + - uid: 1111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,25.5 + parent: 1 +- proto: SMESAdvanced + entities: + - uid: 945 + components: + - type: Transform + pos: 19.5,18.5 + parent: 1 +- proto: SolarPanelPlasma + entities: + - uid: 120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,41.5 + parent: 1 + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,40.5 + parent: 1 + - uid: 128 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,39.5 + parent: 1 + - uid: 137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,17.5 + parent: 1 + - uid: 138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,19.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,16.5 + parent: 1 + - uid: 151 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,41.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,19.5 + parent: 1 + - uid: 217 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,20.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 17.5,16.5 + parent: 1 + - uid: 226 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,42.5 + parent: 1 + - uid: 230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,39.5 + parent: 1 + - uid: 241 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 21.5,43.5 + parent: 1 + - uid: 243 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,43.5 + parent: 1 + - uid: 247 components: - type: Transform - anchored: True - pos: 33.5,20.5 + rot: -1.5707963267948966 rad + pos: 17.5,17.5 parent: 1 - - type: Physics - bodyType: Static - - uid: 556 + - uid: 254 components: - type: Transform - pos: 35.5,19.5 + rot: 1.5707963267948966 rad + pos: 33.5,42.5 parent: 1 -- proto: OreBag - entities: - - uid: 528 + - uid: 280 components: - type: Transform - pos: 29.693842,16.327427 + rot: 1.5707963267948966 rad + pos: 37.5,20.5 parent: 1 - - uid: 529 + - uid: 290 components: - type: Transform - pos: 29.443842,16.577427 + rot: 1.5707963267948966 rad + pos: 33.5,40.5 parent: 1 -- proto: OxygenCanister +- proto: SolarTracker entities: - - uid: 549 + - uid: 350 components: - type: Transform - anchored: True - pos: 33.5,18.5 + pos: 37.5,18.5 parent: 1 - - type: Physics - bodyType: Static - - uid: 555 + - uid: 1323 components: - type: Transform - pos: 35.5,18.5 + pos: 17.5,18.5 parent: 1 -- proto: PaperBin10 +- proto: SpawnDungeonLootOresSingle entities: - - uid: 606 + - uid: 1099 components: - type: Transform - pos: 28.5,40.5 + rot: 3.141592653589793 rad + pos: 33.537132,25.445848 parent: 1 -- proto: Pickaxe - entities: - - uid: 526 + - uid: 1100 components: - type: Transform - pos: 30.600092,16.499302 + rot: 1.5707963267948966 rad + pos: 33.599632,26.836473 parent: 1 - - uid: 527 + - uid: 1101 components: - type: Transform - pos: 30.475092,16.671177 + pos: 33.662132,23.836473 parent: 1 -- proto: PottedPlantBioluminscent +- proto: SpawnPointContractor entities: - - uid: 1122 + - uid: 1669 components: - type: Transform - pos: 25.5,23.5 + pos: 24.5,39.5 parent: 1 -- proto: PottedPlantRandom +- proto: SpawnPointMercenary entities: - - uid: 571 + - uid: 1667 components: - type: Transform - pos: 31.5,38.5 + pos: 25.5,38.5 parent: 1 - - uid: 605 +- proto: SpawnPointPilot + entities: + - uid: 1668 components: - type: Transform - pos: 26.5,40.5 + pos: 24.5,38.5 parent: 1 -- proto: Poweredlight +- proto: StairBridge entities: - - uid: 990 + - uid: 43 components: - type: Transform - pos: 24.5,38.5 + rot: 1.5707963267948966 rad + pos: 20.5,39.5 parent: 1 - - uid: 991 + - uid: 108 components: - type: Transform - pos: 30.5,38.5 + rot: -1.5707963267948966 rad + pos: 16.5,22.5 parent: 1 - - uid: 992 + - uid: 118 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,39.5 + pos: 16.5,14.5 parent: 1 - - uid: 993 + - uid: 121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,39.5 + rot: -1.5707963267948966 rad + pos: 38.5,18.5 parent: 1 - - uid: 994 + - uid: 126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,34.5 + rot: -1.5707963267948966 rad + pos: 38.5,16.5 parent: 1 - - uid: 995 + - uid: 127 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,34.5 + pos: 34.5,39.5 parent: 1 - - uid: 996 + - uid: 194 components: - type: Transform - pos: 29.5,30.5 + rot: -1.5707963267948966 rad + pos: 38.5,22.5 parent: 1 - - uid: 997 + - uid: 227 components: - type: Transform - pos: 25.5,30.5 + rot: 1.5707963267948966 rad + pos: 20.5,41.5 parent: 1 - - uid: 998 + - uid: 242 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,24.5 + pos: 20.5,43.5 parent: 1 - - uid: 999 + - uid: 246 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,24.5 + pos: 34.5,43.5 parent: 1 - - uid: 1000 + - uid: 283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,27.5 + rot: -1.5707963267948966 rad + pos: 34.5,41.5 parent: 1 - - uid: 1001 + - uid: 287 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.5,27.5 + pos: 38.5,20.5 parent: 1 - - uid: 1002 + - uid: 295 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,20.5 + pos: 16.5,16.5 parent: 1 - - uid: 1003 + - uid: 310 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,20.5 + rot: 1.5707963267948966 rad + pos: 16.5,20.5 parent: 1 - - uid: 1004 + - uid: 341 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,19.5 - parent: 1 - - uid: 1005 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,19.5 + pos: 16.5,18.5 parent: 1 - - uid: 1006 + - uid: 442 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,19.5 + pos: 38.5,14.5 parent: 1 - - uid: 1007 + - uid: 758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,19.5 + pos: 32.5,19.5 parent: 1 - - uid: 1008 + - uid: 761 components: - type: Transform - pos: 25.5,16.5 + pos: 34.5,16.5 parent: 1 - - uid: 1009 + - uid: 762 components: - type: Transform - pos: 29.5,16.5 + pos: 32.5,16.5 parent: 1 - - uid: 1010 + - uid: 819 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,14.5 + rot: 1.5707963267948966 rad + pos: 31.5,31.5 parent: 1 - - uid: 1011 + - uid: 828 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,14.5 + pos: 34.5,19.5 parent: 1 - - uid: 1012 + - uid: 855 components: - type: Transform rot: 1.5707963267948966 rad - pos: 26.5,11.5 + pos: 31.5,30.5 parent: 1 - - uid: 1013 + - uid: 958 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,11.5 + pos: 23.5,19.5 parent: 1 - - uid: 1014 +- proto: Stairs + entities: + - uid: 265 components: - type: Transform - pos: 27.5,6.5 + pos: 26.5,36.5 parent: 1 - - uid: 1015 + - uid: 317 components: - type: Transform rot: -1.5707963267948966 rad - pos: 24.5,34.5 + pos: 29.5,19.5 parent: 1 - - uid: 1016 + - uid: 589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,34.5 + rot: 3.141592653589793 rad + pos: 31.5,21.5 parent: 1 - - uid: 1017 + - uid: 596 components: - type: Transform - pos: 21.5,35.5 + rot: 1.5707963267948966 rad + pos: 25.5,25.5 parent: 1 - - uid: 1018 + - uid: 598 components: - type: Transform - pos: 33.5,35.5 + rot: 3.141592653589793 rad + pos: 28.5,13.5 parent: 1 -- proto: PoweredlightPink - entities: - - uid: 1019 + - uid: 599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,9.5 + pos: 27.5,11.5 parent: 1 - - uid: 1020 + - uid: 600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,9.5 + rot: 3.141592653589793 rad + pos: 27.5,13.5 parent: 1 - - uid: 1021 + - uid: 601 components: - type: Transform - pos: 35.5,16.5 + pos: 28.5,11.5 parent: 1 - - uid: 1022 + - uid: 602 components: - type: Transform - pos: 19.5,16.5 + pos: 26.5,11.5 parent: 1 - - uid: 1028 + - uid: 603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,24.5 + rot: 3.141592653589793 rad + pos: 26.5,13.5 parent: 1 - - uid: 1029 + - uid: 604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,27.5 + pos: 27.5,7.5 parent: 1 - - uid: 1030 + - uid: 605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,30.5 + pos: 26.5,7.5 parent: 1 - - uid: 1031 + - uid: 606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,27.5 + pos: 28.5,7.5 parent: 1 - - uid: 1032 + - uid: 607 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,24.5 + pos: 29.5,18.5 parent: 1 - - uid: 1033 + - uid: 609 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,30.5 - parent: 1 -- proto: Protolathe - entities: - - uid: 491 - components: - - type: Transform - pos: 23.5,26.5 + pos: 25.5,19.5 parent: 1 -- proto: Rack - entities: - - uid: 524 + - uid: 610 components: - type: Transform - pos: 29.5,16.5 + rot: 1.5707963267948966 rad + pos: 25.5,18.5 parent: 1 - - uid: 525 + - uid: 611 components: - type: Transform - pos: 30.5,16.5 + rot: 1.5707963267948966 rad + pos: 24.5,31.5 parent: 1 -- proto: RandomDrinkGlass - entities: - - uid: 1124 + - uid: 617 components: - type: Transform - pos: 29.5,24.5 + pos: 27.5,36.5 parent: 1 - - uid: 1125 + - uid: 618 components: - type: Transform - pos: 30.5,24.5 + pos: 28.5,36.5 parent: 1 -- proto: RandomPosterAny - entities: - - uid: 1127 + - uid: 620 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,22.5 + pos: 31.5,34.5 parent: 1 - - uid: 1128 + - uid: 621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,17.5 + pos: 31.5,35.5 parent: 1 - - uid: 1129 +- proto: StorageCanister + entities: + - uid: 664 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,13.5 + pos: 25.5,29.5 parent: 1 - - uid: 1130 + - uid: 915 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,18.5 + pos: 25.5,33.5 parent: 1 - - uid: 1131 +- proto: StructureMeleeWeaponRackSalvage + entities: + - uid: 715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,21.5 + pos: 31.5,16.5 parent: 1 - - uid: 1132 + - type: ContainerContainer + containers: + weapon1: !type:ContainerSlot + showEnts: False + occludes: True + ent: 961 + weapon2: !type:ContainerSlot + showEnts: False + occludes: True + ent: 962 + weapon3: !type:ContainerSlot + showEnts: False + occludes: True + ent: 963 + weapon4: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon5: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: SubstationBasic + entities: + - uid: 704 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,21.5 + pos: 22.5,31.5 parent: 1 - - uid: 1133 + - uid: 830 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,25.5 + pos: 29.5,15.5 parent: 1 - - uid: 1134 +- proto: SuitStorageEVAScientist + entities: + - uid: 1657 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,28.5 + pos: 31.5,38.5 parent: 1 - - uid: 1135 + - uid: 1658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,32.5 + pos: 31.5,39.5 parent: 1 - - uid: 1136 +- proto: SuitStorageWallmountEVAMedical + entities: + - uid: 1124 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,35.5 + pos: 23.5,26.5 parent: 1 - - uid: 1137 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 1136 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,32.5 + pos: 23.5,16.5 parent: 1 - - uid: 1138 +- proto: SurveillanceCameraScience + entities: + - uid: 177 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,37.5 + rot: -1.5707963267948966 rad + pos: 26.5,15.5 parent: 1 - - uid: 1139 + - uid: 1144 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,40.5 + rot: -1.5707963267948966 rad + pos: 26.5,7.5 parent: 1 - - uid: 1140 + - uid: 1145 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,38.5 + pos: 32.5,14.5 parent: 1 -- proto: RandomSpawner - entities: - - uid: 1103 + - uid: 1146 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,30.5 + rot: -1.5707963267948966 rad + pos: 33.5,27.5 parent: 1 - - uid: 1104 + - uid: 1147 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,28.5 + rot: -1.5707963267948966 rad + pos: 26.5,24.5 parent: 1 - - uid: 1105 + - uid: 1148 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,23.5 + rot: 1.5707963267948966 rad + pos: 30.5,29.5 parent: 1 - - uid: 1106 + - uid: 1150 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,24.5 + pos: 21.5,25.5 parent: 1 - - uid: 1107 + - uid: 1151 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,21.5 + pos: 19.5,20.5 parent: 1 - - uid: 1108 + - uid: 1484 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,14.5 + pos: 26.5,40.5 parent: 1 - - uid: 1109 +- proto: TableCounterMetal + entities: + - uid: 755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,16.5 + pos: 33.5,27.5 parent: 1 - - uid: 1110 +- proto: TableReinforced + entities: + - uid: 580 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,19.5 + pos: 27.5,40.5 parent: 1 - - uid: 1111 + - uid: 745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,33.5 + rot: 1.5707963267948966 rad + pos: 35.5,16.5 parent: 1 - - uid: 1112 + - uid: 802 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,34.5 + pos: 29.5,14.5 parent: 1 - - uid: 1113 + - uid: 806 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,37.5 + pos: 26.5,40.5 parent: 1 - - uid: 1114 + - uid: 808 components: - type: Transform - rot: 3.141592653589793 rad pos: 28.5,40.5 parent: 1 - - uid: 1115 + - uid: 826 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,34.5 + rot: -1.5707963267948966 rad + pos: 32.5,32.5 parent: 1 -- proto: ResearchAndDevelopmentServer - entities: - - uid: 433 + - uid: 834 components: - type: Transform - pos: 23.5,22.5 + rot: -1.5707963267948966 rad + pos: 25.5,34.5 parent: 1 -- proto: ShuttleWindow - entities: - - uid: 399 + - uid: 854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,41.5 + rot: -1.5707963267948966 rad + pos: 25.5,28.5 parent: 1 - - uid: 400 + - uid: 916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,41.5 + rot: 3.141592653589793 rad + pos: 25.5,14.5 parent: 1 - - uid: 401 + - uid: 920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,41.5 + rot: -1.5707963267948966 rad + pos: 19.5,19.5 parent: 1 - - uid: 477 + - uid: 947 components: - type: Transform - pos: 23.5,39.5 + pos: 29.5,40.5 parent: 1 - - uid: 478 + - uid: 959 components: - type: Transform - pos: 31.5,39.5 + pos: 26.5,39.5 parent: 1 -- proto: ShuttleWindowDiagonal - entities: - - uid: 481 + - uid: 978 components: - type: Transform - pos: 22.5,39.5 + pos: 28.5,39.5 parent: 1 - - uid: 482 + - uid: 986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,39.5 + pos: 23.5,37.5 parent: 1 -- proto: SignalButtonWindows - entities: - - uid: 19 + - uid: 1173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,33.5 + rot: -1.5707963267948966 rad + pos: 25.5,10.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 486: - - - Pressed - - Toggle - - uid: 471 + - uid: 1174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,9.5 + rot: -1.5707963267948966 rad + pos: 29.5,10.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 567: - - - Pressed - - Toggle - - uid: 472 +- proto: Thruster + entities: + - uid: 68 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,9.5 + pos: 34.5,32.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 568: - - - Pressed - - Toggle - - uid: 480 + - uid: 83 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,33.5 + rot: 3.141592653589793 rad + pos: 32.5,12.5 parent: 1 - - type: DeviceLinkSource - linkedPorts: - 487: - - - Pressed - - Toggle -- proto: SMESBasic - entities: - - uid: 422 + - uid: 84 components: - type: Transform - pos: 24.5,20.5 + rot: 3.141592653589793 rad + pos: 22.5,12.5 parent: 1 - - uid: 423 + - uid: 116 components: - type: Transform - pos: 30.5,20.5 + rot: -1.5707963267948966 rad + pos: 32.5,46.5 parent: 1 -- proto: SolarPanelUranium - entities: - - uid: 304 + - uid: 132 components: - type: Transform - pos: 19.5,9.5 + rot: -1.5707963267948966 rad + pos: 37.5,15.5 parent: 1 - - uid: 320 + - uid: 133 components: - type: Transform - pos: 35.5,7.5 + rot: -1.5707963267948966 rad + pos: 37.5,21.5 parent: 1 - - uid: 321 + - uid: 169 components: - type: Transform - pos: 35.5,9.5 + rot: 1.5707963267948966 rad + pos: 17.5,15.5 parent: 1 - - uid: 322 + - uid: 180 components: - type: Transform - pos: 34.5,9.5 + rot: 1.5707963267948966 rad + pos: 17.5,21.5 parent: 1 - - uid: 323 + - uid: 213 components: - type: Transform - pos: 33.5,9.5 + rot: -1.5707963267948966 rad + pos: 34.5,35.5 parent: 1 - - uid: 324 + - uid: 228 components: - type: Transform - pos: 32.5,9.5 + rot: -1.5707963267948966 rad + pos: 32.5,47.5 parent: 1 - - uid: 326 + - uid: 278 components: - type: Transform - pos: 31.5,7.5 + rot: -1.5707963267948966 rad + pos: 33.5,38.5 parent: 1 - - uid: 327 + - uid: 313 components: - type: Transform - pos: 32.5,7.5 + rot: 1.5707963267948966 rad + pos: 21.5,38.5 parent: 1 - - uid: 328 + - uid: 347 components: - type: Transform - pos: 33.5,7.5 + rot: 1.5707963267948966 rad + pos: 20.5,32.5 parent: 1 - - uid: 329 + - uid: 359 components: - type: Transform - pos: 34.5,7.5 + rot: -1.5707963267948966 rad + pos: 33.5,44.5 parent: 1 - - uid: 332 + - uid: 366 components: - type: Transform - pos: 31.5,9.5 + rot: 1.5707963267948966 rad + pos: 20.5,35.5 parent: 1 - - uid: 333 + - uid: 370 components: - type: Transform - pos: 23.5,7.5 + rot: 1.5707963267948966 rad + pos: 21.5,44.5 parent: 1 - - uid: 334 + - uid: 614 components: - type: Transform - pos: 22.5,7.5 + rot: 1.5707963267948966 rad + pos: 20.5,29.5 parent: 1 - - uid: 335 + - uid: 650 components: - type: Transform - pos: 21.5,7.5 + rot: 1.5707963267948966 rad + pos: 22.5,46.5 parent: 1 - - uid: 336 + - uid: 651 components: - type: Transform - pos: 20.5,7.5 + rot: 1.5707963267948966 rad + pos: 22.5,47.5 parent: 1 - - uid: 338 +- proto: ThrusterMediumLong + entities: + - uid: 28 components: - type: Transform - pos: 19.5,7.5 + pos: 24.5,47.5 parent: 1 - - uid: 339 + - uid: 35 components: - type: Transform - pos: 20.5,9.5 + rot: 3.141592653589793 rad + pos: 35.5,11.5 parent: 1 - - uid: 340 + - uid: 58 components: - type: Transform - pos: 21.5,9.5 + pos: 23.5,9.5 parent: 1 - - uid: 341 + - uid: 182 components: - type: Transform - pos: 22.5,9.5 + pos: 31.5,9.5 parent: 1 - - uid: 342 + - uid: 192 components: - type: Transform - pos: 23.5,9.5 + rot: 3.141592653589793 rad + pos: 34.5,11.5 parent: 1 -- proto: SolarTracker - entities: - - uid: 177 + - uid: 235 components: - type: Transform - pos: 19.5,8.5 + rot: 3.141592653589793 rad + pos: 19.5,11.5 parent: 1 - - uid: 325 + - uid: 286 components: - type: Transform - pos: 35.5,8.5 + rot: 3.141592653589793 rad + pos: 20.5,11.5 parent: 1 - - uid: 331 + - uid: 443 components: - type: Transform - pos: 21.5,8.5 + pos: 30.5,47.5 parent: 1 - - uid: 343 +- proto: TwoWayLever + entities: + - uid: 1355 components: - type: Transform - pos: 33.5,8.5 + rot: -1.5707963267948966 rad + pos: 37.5,23.5 parent: 1 - - uid: 344 + - type: DeviceLinkSource + linkedPorts: + 743: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 741: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 742: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 740: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 739: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 369: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 748: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off +- proto: VendingMachineCiviMedPlus + entities: + - uid: 982 components: - type: Transform - pos: 31.5,8.5 + pos: 21.5,24.5 parent: 1 - - uid: 345 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 1163 components: - type: Transform - pos: 23.5,8.5 + pos: 25.5,8.5 parent: 1 -- proto: SpawnPointContractor - entities: - - uid: 542 + - uid: 1164 components: - type: Transform - pos: 28.5,38.5 + pos: 29.5,8.5 parent: 1 -- proto: SpawnPointLatejoin +- proto: WallShuttle entities: - - uid: 539 + - uid: 3 components: - type: Transform - pos: 25.5,37.5 + pos: 20.5,26.5 parent: 1 -- proto: SpawnPointMercenary - entities: - - uid: 540 + - uid: 4 components: - type: Transform - pos: 26.5,38.5 + rot: 3.141592653589793 rad + pos: 30.5,6.5 parent: 1 -- proto: SpawnPointPilot - entities: - - uid: 541 + - uid: 5 components: - type: Transform - pos: 27.5,38.5 + rot: 3.141592653589793 rad + pos: 33.5,12.5 parent: 1 -- proto: StorageCanister - entities: - - uid: 552 + - uid: 6 components: - type: Transform - pos: 34.5,20.5 + rot: 3.141592653589793 rad + pos: 18.5,20.5 parent: 1 - - uid: 553 + - uid: 10 components: - type: Transform - pos: 35.5,20.5 + rot: 3.141592653589793 rad + pos: 36.5,20.5 parent: 1 - - uid: 577 + - uid: 11 components: - type: Transform - pos: 31.5,32.5 + rot: 3.141592653589793 rad + pos: 36.5,21.5 parent: 1 - - uid: 578 + - uid: 13 components: - type: Transform - pos: 23.5,32.5 + pos: 21.5,37.5 parent: 1 -- proto: SubstationBasic - entities: - - uid: 398 + - uid: 17 components: - type: Transform - pos: 24.5,22.5 + pos: 17.5,14.5 parent: 1 - - uid: 434 + - uid: 23 components: - type: Transform - pos: 30.5,22.5 + pos: 22.5,44.5 parent: 1 -- proto: SuitStorageEVAScientist - entities: - - uid: 488 + - uid: 24 components: - type: Transform - pos: 25.5,38.5 + pos: 22.5,45.5 parent: 1 -- proto: SuitStorageRD - entities: - - uid: 489 + - uid: 29 components: - type: Transform - pos: 29.5,38.5 + rot: -1.5707963267948966 rad + pos: 33.5,36.5 parent: 1 -- proto: TableReinforced - entities: - - uid: 441 + - uid: 30 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,40.5 + rot: -1.5707963267948966 rad + pos: 33.5,37.5 parent: 1 - - uid: 442 + - uid: 31 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,39.5 + rot: -1.5707963267948966 rad + pos: 32.5,37.5 parent: 1 - - uid: 443 + - uid: 32 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,40.5 + rot: -1.5707963267948966 rad + pos: 32.5,38.5 parent: 1 - - uid: 444 + - uid: 34 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,40.5 + pos: 23.5,48.5 parent: 1 - - uid: 445 + - uid: 36 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,39.5 + pos: 34.5,13.5 parent: 1 - - uid: 446 + - uid: 45 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,38.5 + pos: 18.5,13.5 parent: 1 - - uid: 447 + - uid: 46 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,38.5 + pos: 18.5,21.5 parent: 1 - - uid: 448 + - uid: 47 components: - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,37.5 + pos: 18.5,15.5 parent: 1 - - uid: 449 + - uid: 49 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,38.5 + pos: 18.5,11.5 parent: 1 - - uid: 450 + - uid: 50 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,38.5 + pos: 18.5,23.5 parent: 1 - - uid: 451 + - uid: 51 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,37.5 + pos: 24.5,6.5 parent: 1 - - uid: 452 + - uid: 53 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,35.5 + pos: 33.5,11.5 parent: 1 - - uid: 454 + - uid: 54 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,35.5 + pos: 31.5,12.5 parent: 1 - - uid: 492 + - uid: 55 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,24.5 + rot: 3.141592653589793 rad + pos: 32.5,13.5 parent: 1 - - uid: 503 + - uid: 61 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,16.5 + pos: 36.5,12.5 parent: 1 - - uid: 1038 + - uid: 63 components: - type: Transform - pos: 25.5,16.5 + rot: 3.141592653589793 rad + pos: 23.5,45.5 parent: 1 - - uid: 1117 + - uid: 65 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,24.5 + rot: 3.141592653589793 rad + pos: 31.5,45.5 parent: 1 -- proto: TelecomServer - entities: - - uid: 397 + - uid: 66 components: - type: Transform - pos: 31.5,22.5 + rot: -1.5707963267948966 rad + pos: 32.5,45.5 parent: 1 -- proto: Thruster - entities: - - uid: 6 + - uid: 70 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,15.5 + pos: 23.5,36.5 parent: 1 - - uid: 7 + - uid: 71 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,15.5 + pos: 21.5,36.5 parent: 1 - - uid: 17 + - uid: 74 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,23.5 + pos: 18.5,22.5 parent: 1 - - uid: 58 + - uid: 77 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,23.5 + pos: 17.5,22.5 parent: 1 - - uid: 62 + - uid: 79 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,27.5 + pos: 23.5,13.5 parent: 1 - - uid: 63 + - uid: 80 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,27.5 + pos: 22.5,13.5 parent: 1 - - uid: 65 + - uid: 81 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,24.5 + pos: 21.5,10.5 parent: 1 - - uid: 68 + - uid: 86 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,13.5 - parent: 1 - - uid: 74 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,26.5 + pos: 24.5,7.5 parent: 1 - - uid: 75 + - uid: 87 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,13.5 + pos: 21.5,11.5 parent: 1 - - uid: 76 + - uid: 88 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,15.5 + pos: 21.5,13.5 parent: 1 - - uid: 77 + - uid: 89 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,15.5 + pos: 21.5,12.5 parent: 1 - - uid: 105 + - uid: 90 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,26.5 + rot: 3.141592653589793 rad + pos: 23.5,12.5 parent: 1 - - uid: 109 + - uid: 91 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,30.5 + rot: 3.141592653589793 rad + pos: 21.5,9.5 parent: 1 - - uid: 110 + - uid: 117 components: - type: Transform - pos: 34.5,29.5 + rot: -1.5707963267948966 rad + pos: 37.5,22.5 parent: 1 - - uid: 139 + - uid: 123 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,13.5 + pos: 24.5,36.5 parent: 1 - - uid: 141 + - uid: 124 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,13.5 + pos: 31.5,47.5 parent: 1 - - uid: 165 + - uid: 125 components: - type: Transform - pos: 24.5,40.5 + rot: 3.141592653589793 rad + pos: 31.5,46.5 parent: 1 - - uid: 171 + - uid: 129 components: - type: Transform - pos: 30.5,40.5 + rot: -1.5707963267948966 rad + pos: 18.5,14.5 parent: 1 - - uid: 246 + - uid: 130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,30.5 + rot: 3.141592653589793 rad + pos: 23.5,47.5 parent: 1 - - uid: 248 + - uid: 131 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,24.5 + pos: 23.5,46.5 parent: 1 - - uid: 252 + - uid: 146 components: - type: Transform - pos: 20.5,29.5 + pos: 30.5,17.5 parent: 1 -- proto: VendingMachineEngivend - entities: - - uid: 510 + - uid: 162 components: - type: Transform - pos: 32.5,20.5 + rot: 3.141592653589793 rad + pos: 22.5,36.5 parent: 1 -- proto: VendingMachineRobotics - entities: - - uid: 509 + - uid: 165 components: - type: Transform - pos: 31.5,20.5 + rot: -1.5707963267948966 rad + pos: 29.5,41.5 parent: 1 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 420 + - uid: 168 components: - type: Transform - pos: 27.5,6.5 + rot: 3.141592653589793 rad + pos: 19.5,13.5 parent: 1 -- proto: WallShuttle - entities: - - uid: 2 + - uid: 176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,5.5 + pos: 22.5,43.5 parent: 1 - - uid: 3 + - uid: 178 components: - type: Transform - pos: 23.5,36.5 + rot: 3.141592653589793 rad + pos: 18.5,12.5 parent: 1 - - uid: 4 + - uid: 183 components: - type: Transform - pos: 24.5,36.5 + rot: 3.141592653589793 rad + pos: 31.5,13.5 parent: 1 - - uid: 5 + - uid: 186 components: - type: Transform - pos: 22.5,36.5 + rot: 3.141592653589793 rad + pos: 36.5,11.5 parent: 1 - - uid: 9 + - uid: 193 components: - type: Transform - pos: 32.5,36.5 + rot: 3.141592653589793 rad + pos: 33.5,13.5 parent: 1 - - uid: 15 + - uid: 195 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,25.5 + pos: 35.5,13.5 parent: 1 - - uid: 18 + - uid: 196 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,37.5 + pos: 33.5,10.5 parent: 1 - - uid: 20 + - uid: 202 components: - type: Transform - pos: 32.5,38.5 + pos: 22.5,38.5 parent: 1 - - uid: 21 + - uid: 206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,19.5 + pos: 22.5,32.5 parent: 1 - - uid: 23 + - uid: 208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,20.5 + pos: 22.5,30.5 parent: 1 - - uid: 25 + - uid: 216 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,21.5 + pos: 32.5,25.5 parent: 1 - - uid: 26 + - uid: 219 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,36.5 + pos: 31.5,29.5 parent: 1 - - uid: 27 + - uid: 220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,20.5 + pos: 21.5,27.5 parent: 1 - - uid: 28 + - uid: 222 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,19.5 + pos: 30.5,43.5 parent: 1 - - uid: 39 + - uid: 229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,40.5 + pos: 20.5,27.5 parent: 1 - - uid: 44 + - uid: 231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,35.5 + rot: 3.141592653589793 rad + pos: 31.5,24.5 parent: 1 - - uid: 47 + - uid: 234 components: - type: Transform - pos: 25.5,39.5 + rot: 3.141592653589793 rad + pos: 29.5,42.5 parent: 1 - - uid: 48 + - uid: 236 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,30.5 + pos: 30.5,45.5 parent: 1 - - uid: 51 + - uid: 239 components: - type: Transform - pos: 24.5,39.5 + rot: 3.141592653589793 rad + pos: 25.5,24.5 parent: 1 - - uid: 64 + - uid: 248 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,30.5 + pos: 30.5,44.5 parent: 1 - - uid: 66 + - uid: 249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,33.5 + rot: 3.141592653589793 rad + pos: 25.5,43.5 parent: 1 - - uid: 69 + - uid: 251 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,36.5 - parent: 1 - - uid: 70 - components: - - type: Transform - pos: 30.5,36.5 + pos: 32.5,24.5 parent: 1 - - uid: 71 + - uid: 252 components: - type: Transform - pos: 29.5,39.5 + rot: 3.141592653589793 rad + pos: 25.5,42.5 parent: 1 - - uid: 72 + - uid: 256 components: - type: Transform - pos: 30.5,39.5 + rot: -1.5707963267948966 rad + pos: 32.5,26.5 parent: 1 - - uid: 73 + - uid: 262 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,22.5 + pos: 32.5,23.5 parent: 1 - - uid: 78 + - uid: 263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,16.5 + rot: 3.141592653589793 rad + pos: 24.5,44.5 parent: 1 - - uid: 79 + - uid: 264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,17.5 + rot: 3.141592653589793 rad + pos: 29.5,34.5 parent: 1 - - uid: 80 + - uid: 268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,17.5 + rot: -1.5707963267948966 rad + pos: 25.5,41.5 parent: 1 - - uid: 81 + - uid: 274 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,18.5 + rot: -1.5707963267948966 rad + pos: 32.5,27.5 parent: 1 - - uid: 82 + - uid: 281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,17.5 + rot: 3.141592653589793 rad + pos: 29.5,43.5 parent: 1 - - uid: 83 + - uid: 288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,19.5 + pos: 24.5,32.5 parent: 1 - - uid: 84 + - uid: 289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,17.5 + rot: 3.141592653589793 rad + pos: 24.5,45.5 parent: 1 - - uid: 85 + - uid: 291 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,20.5 + rot: -1.5707963267948966 rad + pos: 24.5,43.5 parent: 1 - - uid: 86 + - uid: 293 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,17.5 + pos: 36.5,22.5 parent: 1 - - uid: 88 + - uid: 297 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,17.5 - parent: 1 - - uid: 89 - components: - - type: Transform - pos: 19.5,21.5 + pos: 22.5,37.5 parent: 1 - - uid: 91 + - uid: 298 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,25.5 - parent: 1 - - uid: 92 - components: - - type: Transform - pos: 20.5,22.5 + pos: 36.5,13.5 parent: 1 - - uid: 93 + - uid: 301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,14.5 + rot: 3.141592653589793 rad + pos: 33.5,9.5 parent: 1 - - uid: 95 + - uid: 304 components: - type: Transform - pos: 21.5,22.5 + rot: 1.5707963267948966 rad + pos: 36.5,14.5 parent: 1 - - uid: 96 + - uid: 306 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,7.5 + pos: 33.5,33.5 parent: 1 - - uid: 97 + - uid: 308 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,31.5 + pos: 32.5,44.5 parent: 1 - - uid: 98 + - uid: 311 components: - type: Transform - pos: 22.5,22.5 + rot: 3.141592653589793 rad + pos: 30.5,7.5 parent: 1 - - uid: 99 + - uid: 314 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,25.5 + pos: 37.5,14.5 parent: 1 - - uid: 100 + - uid: 315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,6.5 + rot: 3.141592653589793 rad + pos: 36.5,15.5 parent: 1 - - uid: 101 + - uid: 316 components: - type: Transform - pos: 27.5,7.5 + rot: -1.5707963267948966 rad + pos: 32.5,43.5 parent: 1 - - uid: 102 + - uid: 318 components: - type: Transform - pos: 22.5,23.5 + pos: 32.5,29.5 parent: 1 - - uid: 103 + - uid: 319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,13.5 + pos: 36.5,17.5 parent: 1 - - uid: 104 + - uid: 321 components: - type: Transform - pos: 22.5,24.5 + rot: 3.141592653589793 rad + pos: 20.5,13.5 parent: 1 - - uid: 106 + - uid: 327 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,28.5 + rot: -1.5707963267948966 rad + pos: 33.5,35.5 parent: 1 - - uid: 107 + - uid: 328 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,12.5 + pos: 33.5,34.5 parent: 1 - - uid: 108 + - uid: 332 components: - type: Transform - pos: 22.5,25.5 + rot: -1.5707963267948966 rad + pos: 23.5,43.5 parent: 1 - - uid: 111 + - uid: 333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,17.5 + rot: 3.141592653589793 rad + pos: 30.5,21.5 parent: 1 - - uid: 112 + - uid: 334 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,14.5 + pos: 31.5,43.5 parent: 1 - - uid: 113 + - uid: 346 components: - type: Transform pos: 22.5,26.5 parent: 1 - - uid: 114 + - uid: 348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,11.5 + rot: 3.141592653589793 rad + pos: 25.5,36.5 parent: 1 - - uid: 115 + - uid: 351 components: - type: Transform - pos: 20.5,32.5 + pos: 21.5,29.5 parent: 1 - - uid: 116 + - uid: 358 components: - type: Transform - pos: 22.5,27.5 + pos: 21.5,33.5 parent: 1 - - uid: 119 + - uid: 360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,36.5 + pos: 21.5,32.5 parent: 1 - - uid: 120 + - uid: 361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,31.5 + pos: 23.5,26.5 parent: 1 - - uid: 121 + - uid: 367 components: - type: Transform - pos: 22.5,28.5 + pos: 21.5,31.5 parent: 1 - - uid: 124 + - uid: 395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,37.5 + pos: 21.5,26.5 parent: 1 - - uid: 125 + - uid: 396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,9.5 + pos: 21.5,30.5 parent: 1 - - uid: 126 + - uid: 439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,37.5 + pos: 31.5,48.5 parent: 1 - - uid: 127 + - uid: 445 components: - type: Transform - pos: 22.5,29.5 + rot: 3.141592653589793 rad + pos: 30.5,12.5 parent: 1 - - uid: 129 + - uid: 446 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,28.5 + pos: 30.5,10.5 parent: 1 - - uid: 130 + - uid: 447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,22.5 + rot: 3.141592653589793 rad + pos: 29.5,11.5 parent: 1 - - uid: 131 + - uid: 448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,31.5 + rot: 3.141592653589793 rad + pos: 30.5,11.5 parent: 1 - - uid: 132 + - uid: 452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,7.5 + rot: 3.141592653589793 rad + pos: 30.5,13.5 parent: 1 - - uid: 133 + - uid: 453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,31.5 + rot: 3.141592653589793 rad + pos: 29.5,16.5 parent: 1 - - uid: 134 + - uid: 454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,6.5 + rot: 3.141592653589793 rad + pos: 29.5,12.5 parent: 1 - - uid: 135 + - uid: 455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,40.5 + pos: 32.5,28.5 parent: 1 - - uid: 136 + - uid: 470 components: - type: Transform - pos: 31.5,36.5 + rot: 3.141592653589793 rad + pos: 24.5,8.5 parent: 1 - - uid: 137 + - uid: 473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,11.5 + rot: 3.141592653589793 rad + pos: 24.5,9.5 parent: 1 - - uid: 142 + - uid: 474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,9.5 + rot: 3.141592653589793 rad + pos: 24.5,10.5 parent: 1 - - uid: 144 + - uid: 482 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,28.5 + pos: 30.5,8.5 parent: 1 - - uid: 145 + - uid: 487 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,25.5 + pos: 30.5,9.5 parent: 1 - - uid: 146 + - uid: 550 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,28.5 + pos: 24.5,11.5 parent: 1 - - uid: 147 + - uid: 551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,33.5 + rot: 3.141592653589793 rad + pos: 25.5,13.5 parent: 1 - - uid: 151 + - uid: 552 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,36.5 + pos: 29.5,13.5 parent: 1 - - uid: 183 + - uid: 553 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,15.5 + rot: 3.141592653589793 rad + pos: 25.5,12.5 parent: 1 - - uid: 184 + - uid: 554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,14.5 + rot: 3.141592653589793 rad + pos: 24.5,12.5 parent: 1 - - uid: 185 + - uid: 555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,13.5 + rot: 3.141592653589793 rad + pos: 25.5,11.5 parent: 1 - - uid: 186 + - uid: 556 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,15.5 + pos: 32.5,20.5 parent: 1 - - uid: 187 + - uid: 558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,13.5 + pos: 32.5,22.5 parent: 1 - - uid: 188 + - uid: 559 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,13.5 + pos: 25.5,37.5 parent: 1 - - uid: 190 + - uid: 560 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,12.5 + pos: 29.5,37.5 parent: 1 - - uid: 191 + - uid: 562 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,11.5 + pos: 24.5,30.5 parent: 1 - - uid: 192 + - uid: 563 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,10.5 - parent: 1 - - uid: 193 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,17.5 + pos: 31.5,37.5 parent: 1 - - uid: 194 + - uid: 564 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,9.5 + pos: 30.5,37.5 parent: 1 - - uid: 195 + - uid: 576 components: - type: Transform - rot: -1.5707963267948966 rad + rot: 3.141592653589793 rad pos: 25.5,17.5 parent: 1 - - uid: 196 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,15.5 - parent: 1 - - uid: 197 + - uid: 581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,13.5 + rot: 1.5707963267948966 rad + pos: 32.5,21.5 parent: 1 - - uid: 198 + - uid: 583 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,17.5 + rot: 3.141592653589793 rad + pos: 29.5,20.5 parent: 1 - - uid: 199 + - uid: 586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,14.5 + rot: 3.141592653589793 rad + pos: 30.5,16.5 parent: 1 - - uid: 200 + - uid: 587 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,7.5 + pos: 24.5,17.5 parent: 1 - - uid: 201 + - uid: 588 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,17.5 + rot: 3.141592653589793 rad + pos: 30.5,20.5 parent: 1 - - uid: 202 + - uid: 590 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,6.5 + pos: 25.5,20.5 parent: 1 - - uid: 204 + - uid: 591 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,12.5 + rot: 3.141592653589793 rad + pos: 24.5,20.5 parent: 1 - - uid: 205 + - uid: 592 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,12.5 + pos: 24.5,21.5 parent: 1 - - uid: 206 + - uid: 593 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,13.5 + pos: 24.5,22.5 parent: 1 - - uid: 209 + - uid: 594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,21.5 + rot: 3.141592653589793 rad + pos: 24.5,23.5 parent: 1 - - uid: 210 + - uid: 595 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,11.5 + pos: 24.5,24.5 parent: 1 - - uid: 212 + - uid: 597 components: - type: Transform - pos: 25.5,5.5 + pos: 24.5,26.5 parent: 1 - - uid: 213 + - uid: 612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,31.5 + rot: 3.141592653589793 rad + pos: 29.5,35.5 parent: 1 - - uid: 214 + - uid: 613 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,10.5 + pos: 29.5,36.5 parent: 1 - - uid: 217 + - uid: 615 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,9.5 + pos: 21.5,35.5 parent: 1 - - uid: 220 + - uid: 619 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,7.5 + pos: 33.5,28.5 parent: 1 - - uid: 221 + - uid: 622 components: - type: Transform - pos: 29.5,5.5 + pos: 25.5,26.5 parent: 1 - - uid: 222 + - uid: 683 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,6.5 + pos: 33.5,29.5 parent: 1 - - uid: 223 + - uid: 693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,31.5 + rot: -1.5707963267948966 rad + pos: 25.5,32.5 parent: 1 - - uid: 225 + - uid: 694 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,17.5 + pos: 25.5,30.5 parent: 1 - - uid: 226 + - uid: 698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,17.5 + rot: 1.5707963267948966 rad + pos: 30.5,15.5 parent: 1 - - uid: 227 + - uid: 702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,17.5 + rot: 1.5707963267948966 rad + pos: 30.5,14.5 parent: 1 - - uid: 228 + - uid: 708 components: - type: Transform - pos: 36.5,16.5 + pos: 22.5,41.5 parent: 1 - - uid: 229 + - uid: 721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,17.5 + rot: 1.5707963267948966 rad + pos: 22.5,23.5 parent: 1 - - uid: 230 + - uid: 722 components: - type: Transform - pos: 36.5,17.5 + rot: 3.141592653589793 rad + pos: 25.5,15.5 parent: 1 - - uid: 231 + - uid: 763 components: - type: Transform - pos: 36.5,18.5 + pos: 36.5,16.5 parent: 1 - - uid: 232 + - uid: 800 + components: + - type: Transform + pos: 32.5,41.5 + parent: 1 + - uid: 805 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,22.5 + pos: 33.5,30.5 parent: 1 - - uid: 233 + - uid: 812 components: - type: Transform - pos: 36.5,19.5 + rot: 3.141592653589793 rad + pos: 22.5,17.5 parent: 1 - - uid: 234 + - uid: 831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,22.5 + rot: 3.141592653589793 rad + pos: 22.5,15.5 parent: 1 - - uid: 235 + - uid: 832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,23.5 + rot: 3.141592653589793 rad + pos: 22.5,16.5 parent: 1 - - uid: 236 + - uid: 833 components: - type: Transform - pos: 36.5,20.5 + rot: 3.141592653589793 rad + pos: 22.5,14.5 parent: 1 - - uid: 237 + - uid: 848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,21.5 + rot: 3.141592653589793 rad + pos: 23.5,17.5 parent: 1 - - uid: 238 + - uid: 877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,22.5 + pos: 32.5,42.5 parent: 1 - - uid: 240 + - uid: 881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,24.5 + pos: 22.5,42.5 parent: 1 - - uid: 243 + - uid: 918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,25.5 + pos: 19.5,21.5 parent: 1 - - uid: 245 + - uid: 929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,27.5 + rot: 3.141592653589793 rad + pos: 23.5,22.5 parent: 1 - - uid: 250 + - uid: 930 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,28.5 + pos: 19.5,23.5 parent: 1 - - uid: 253 + - uid: 931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,29.5 + rot: 3.141592653589793 rad + pos: 19.5,22.5 parent: 1 - - uid: 255 + - uid: 932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,26.5 + rot: 3.141592653589793 rad + pos: 20.5,23.5 parent: 1 - - uid: 258 + - uid: 934 components: - type: Transform - pos: 34.5,32.5 + rot: 3.141592653589793 rad + pos: 19.5,24.5 parent: 1 - - uid: 261 + - uid: 938 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,37.5 + pos: 23.5,23.5 parent: 1 - - uid: 263 + - uid: 939 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,31.5 + pos: 21.5,23.5 parent: 1 - - uid: 264 + - uid: 943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,31.5 + pos: 18.5,17.5 parent: 1 - - uid: 266 + - uid: 944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,13.5 + pos: 35.5,17.5 parent: 1 - - uid: 267 + - uid: 948 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,13.5 + pos: 20.5,24.5 parent: 1 - - uid: 268 + - uid: 953 + components: + - type: Transform + pos: 29.5,17.5 + parent: 1 + - uid: 981 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,14.5 + pos: 20.5,25.5 parent: 1 - - uid: 270 + - uid: 993 components: - type: Transform - pos: 36.5,14.5 + pos: 18.5,16.5 parent: 1 - - uid: 271 + - uid: 994 components: - type: Transform - pos: 36.5,15.5 + pos: 31.5,17.5 parent: 1 - - uid: 330 +- proto: WallShuttleDiagonal + entities: + - uid: 14 components: - type: Transform - pos: 33.5,32.5 + rot: -1.5707963267948966 rad + pos: 25.5,44.5 parent: 1 - - uid: 346 + - uid: 21 components: - type: Transform - pos: 25.5,35.5 + rot: -1.5707963267948966 rad + pos: 31.5,49.5 parent: 1 - - uid: 347 + - uid: 22 components: - type: Transform - pos: 25.5,34.5 + pos: 29.5,44.5 parent: 1 - - uid: 348 + - uid: 48 components: - type: Transform - pos: 25.5,32.5 + rot: 1.5707963267948966 rad + pos: 21.5,8.5 parent: 1 - - uid: 349 + - uid: 56 components: - type: Transform - pos: 29.5,35.5 + rot: 3.141592653589793 rad + pos: 30.5,5.5 parent: 1 - - uid: 350 + - uid: 57 components: - type: Transform - pos: 29.5,34.5 + rot: 1.5707963267948966 rad + pos: 25.5,4.5 parent: 1 - - uid: 351 + - uid: 59 components: - type: Transform - pos: 29.5,32.5 + rot: 3.141592653589793 rad + pos: 36.5,10.5 parent: 1 - - uid: 352 + - uid: 60 components: - type: Transform - pos: 29.5,33.5 + rot: 3.141592653589793 rad + pos: 37.5,13.5 parent: 1 - - uid: 353 + - uid: 62 components: - type: Transform - pos: 25.5,33.5 + rot: 3.141592653589793 rad + pos: 33.5,8.5 parent: 1 - - uid: 355 + - uid: 67 components: - type: Transform - pos: 21.5,32.5 + pos: 20.5,33.5 parent: 1 - - uid: 369 + - uid: 72 components: - type: Transform - pos: 20.5,21.5 + pos: 20.5,36.5 parent: 1 - - uid: 373 + - uid: 82 components: - type: Transform - pos: 21.5,21.5 + rot: 3.141592653589793 rad + pos: 31.5,7.5 parent: 1 - - uid: 374 + - uid: 85 components: - type: Transform - pos: 34.5,21.5 + rot: 1.5707963267948966 rad + pos: 23.5,7.5 parent: 1 - - uid: 375 + - uid: 148 components: - type: Transform - pos: 33.5,21.5 + pos: 18.5,24.5 parent: 1 - - uid: 376 + - uid: 172 components: - type: Transform - pos: 32.5,21.5 + pos: 21.5,45.5 parent: 1 - - uid: 377 + - uid: 173 components: - type: Transform - pos: 22.5,21.5 + rot: 1.5707963267948966 rad + pos: 18.5,10.5 parent: 1 - - uid: 378 + - uid: 185 components: - type: Transform - pos: 23.5,21.5 + rot: 1.5707963267948966 rad + pos: 24.5,5.5 parent: 1 - - uid: 379 + - uid: 187 components: - type: Transform - pos: 31.5,21.5 + rot: 3.141592653589793 rad + pos: 29.5,4.5 parent: 1 - - uid: 380 + - uid: 188 components: - type: Transform - pos: 24.5,21.5 + rot: -1.5707963267948966 rad + pos: 33.5,45.5 parent: 1 - - uid: 381 + - uid: 201 components: - type: Transform - pos: 30.5,21.5 + rot: 1.5707963267948966 rad + pos: 17.5,13.5 parent: 1 - - uid: 387 + - uid: 205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,35.5 + pos: 19.5,26.5 parent: 1 - - uid: 389 + - uid: 210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,33.5 + pos: 20.5,30.5 parent: 1 - - uid: 390 + - uid: 211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,35.5 + rot: -1.5707963267948966 rad + pos: 34.5,30.5 parent: 1 - - uid: 392 + - uid: 212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,33.5 + rot: -1.5707963267948966 rad + pos: 34.5,33.5 parent: 1 - - uid: 393 + - uid: 326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,33.5 + rot: -1.5707963267948966 rad + pos: 34.5,36.5 parent: 1 - - uid: 394 + - uid: 343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,35.5 + pos: 23.5,49.5 parent: 1 - - uid: 396 + - uid: 345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,33.5 + rot: -1.5707963267948966 rad + pos: 32.5,48.5 parent: 1 - - uid: 479 + - uid: 368 components: - type: Transform - pos: 22.5,38.5 + pos: 17.5,23.5 parent: 1 - - uid: 551 + - uid: 440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,32.5 + pos: 22.5,48.5 parent: 1 - - uid: 572 + - uid: 1106 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,32.5 + rot: 1.5707963267948966 rad + pos: 30.5,49.5 parent: 1 -- proto: WallShuttleDiagonal - entities: - - uid: 38 + - uid: 1107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,36.5 + rot: 3.141592653589793 rad + pos: 24.5,49.5 parent: 1 - - uid: 87 +- proto: WallShuttleInterior + entities: + - uid: 52 components: - type: Transform - pos: 18.5,21.5 + rot: 3.141592653589793 rad + pos: 29.5,5.5 parent: 1 - - uid: 90 + - uid: 170 components: - type: Transform - pos: 19.5,22.5 + rot: 3.141592653589793 rad + pos: 29.5,6.5 parent: 1 - - uid: 149 + - uid: 214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,40.5 + rot: 3.141592653589793 rad + pos: 29.5,7.5 parent: 1 - - uid: 150 + - uid: 215 components: - type: Transform - pos: 25.5,41.5 + rot: 3.141592653589793 rad + pos: 25.5,6.5 parent: 1 - - uid: 153 + - uid: 300 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,31.5 + pos: 25.5,5.5 parent: 1 - - uid: 182 + - uid: 309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,13.5 + rot: 3.141592653589793 rad + pos: 25.5,7.5 parent: 1 - - uid: 189 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 1291 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,12.5 + pos: 32.5,21.5 parent: 1 - - uid: 207 + - uid: 1292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,5.5 + rot: -1.5707963267948966 rad + pos: 29.5,7.5 parent: 1 - - uid: 208 + - uid: 1651 components: - type: Transform - pos: 23.5,40.5 + rot: 3.141592653589793 rad + pos: 31.5,29.5 parent: 1 - - uid: 211 + - uid: 1662 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,12.5 + pos: 29.5,37.5 parent: 1 - - uid: 224 + - uid: 1664 components: - type: Transform rot: 3.141592653589793 rad - pos: 30.5,5.5 + pos: 30.5,37.5 parent: 1 - - uid: 241 +- proto: WarpPoint + entities: + - uid: 1713 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,21.5 + pos: 27.5,35.5 parent: 1 - - uid: 242 +- proto: WeaponCapacitorRecharger + entities: + - uid: 876 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,22.5 + pos: 21.5,20.5 parent: 1 - - uid: 259 + - uid: 1290 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,38.5 + pos: 21.5,19.5 parent: 1 - - uid: 260 +- proto: WeaponCrusherGlaive + entities: + - uid: 961 + components: + - type: Transform + parent: 715 + - type: Physics + canCollide: False +- proto: WeaponTurretL85Autocannon + entities: + - uid: 1722 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,41.5 + pos: 19.5,25.5 parent: 1 - - uid: 262 +- proto: WeaponTurretM220 + entities: + - uid: 887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,31.5 + rot: 3.141592653589793 rad + pos: 24.5,50.5 parent: 1 - - uid: 265 + - uid: 892 components: - type: Transform - pos: 20.5,36.5 + rot: 3.141592653589793 rad + pos: 30.5,50.5 parent: 1 - - uid: 269 +- proto: WindoorSecure + entities: + - uid: 164 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,13.5 + rot: 1.5707963267948966 rad + pos: 25.5,14.5 parent: 1 - - uid: 483 + - uid: 518 components: - type: Transform - pos: 21.5,38.5 + rot: -1.5707963267948966 rad + pos: 25.5,14.5 parent: 1 -- proto: WarpPoint - entities: - - uid: 493 + - uid: 1177 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,39.5 + pos: 29.5,9.5 + parent: 1 + - uid: 1181 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,9.5 parent: 1 - proto: WindowFrostedDirectional entities: - - uid: 22 + - uid: 102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 29.5,33.5 + parent: 1 + - uid: 579 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,22.5 + pos: 30.5,29.5 parent: 1 - - uid: 67 + - uid: 974 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,22.5 + pos: 26.5,30.5 parent: 1 - - uid: 140 + - uid: 975 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,22.5 + pos: 26.5,32.5 parent: 1 - - uid: 203 + - uid: 995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,22.5 + rot: -1.5707963267948966 rad + pos: 33.5,14.5 parent: 1 - - uid: 456 + - uid: 1178 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,24.5 + pos: 25.5,8.5 parent: 1 - - uid: 457 + - uid: 1179 components: - type: Transform - pos: 23.5,29.5 + pos: 29.5,10.5 parent: 1 - - uid: 458 + - uid: 1180 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,24.5 - parent: 1 - - uid: 459 - components: - - type: Transform - pos: 31.5,29.5 + pos: 29.5,8.5 parent: 1 - - uid: 520 + - uid: 1182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,13.5 + pos: 25.5,10.5 parent: 1 ... diff --git a/Resources/Maps/_Forge/Shuttles/Science/sparrow.yml b/Resources/Maps/_Forge/Shuttles/Science/sparrow.yml new file mode 100644 index 000000000000..4e5cb71caddd --- /dev/null +++ b/Resources/Maps/_Forge/Shuttles/Science/sparrow.yml @@ -0,0 +1,3950 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 02/02/2026 08:03:11 + entityCount: 511 +maps: [] +grids: +- 174 +orphans: +- 174 +nullspace: [] +tilemap: + 0: Space + 30: FloorDark + 34: FloorDarkMini + 35: FloorDarkMono + 4: FloorDarkOffset + 39: FloorDarkPlastic + 2: FloorElevatorShaft + 5: FloorGlass + 9: FloorMetalDiamond + 6: FloorMiningLight + 90: FloorSteel + 7: FloorSteelMono + 105: FloorTechMaint + 1: FloorTechMaint2 + 3: FloorTechMaintDark + 121: Lattice + 122: Plating + 8: PlatingDamaged +entities: +- proto: "" + entities: + - uid: 174 + components: + - type: MetaData + name: Sparrow + - type: Transform + pos: -0.039024353,-0.12682906 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: IgAAAAADAAEAAAAAAAACAAAAAAAAAwAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACIAAAAAAwABAAAAAAAAegAAAAAAAAQAAAAAAAB6AAAAAAAABAAAAAAAAAQAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAiAAAAAAEAAQAAAAAAAHoAAAAAAAAEAAAAAAAAegAAAAAAAAQAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAADAAEAAAAAAAB6AAAAAAAABAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHkAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAABAAAAAAAAegAAAAAAAHoAAAAAAAAEAAAAAAAABAAAAAAAAHoAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAYAAAAAAAB6AAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAAGAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABgAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAAAeQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAQAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAACAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAAHAAAAAAAAegAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAACAAAAAAAAAgAAAAAAAHoAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAB6AAAAAAAACAAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAHoAAAAAAAACAAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAB6AAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAeQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUAAAAAAAB5AAAAAAAAeQAAAAAAAHoAAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABQAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAACQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAAHAAAAAAAAegAAAAAAAAkAAAAAAAAJAAAAAAAAegAAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAABAAAAAAAAAQAAAAAAAAHAAAAAAAABwAAAAAAAHoAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAegAAAAAAAAQAAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB6AAAAAAAAAQAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAACAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB6AAAAAAAAAgAAAAAAAHoAAAAAAAB5AAAAAAAAeQAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACQAAAAAAAAkAAAAAAAB6AAAAAAAAegAAAAAAAHoAAAAAAAB6AAAAAAAAegAAAAAAAAUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHoAAAAAAAACAAAAAAAAegAAAAAAAAQAAAAAAAAEAAAAAAAAegAAAAAAAAkAAAAAAAB6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAQAAAAAAAHoAAAAAAAAJAAAAAAAACQAAAAAAAHoAAAAAAAAJAAAAAAAAegAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAACAAEAAAAAAAB6AAAAAAAAAwAAAAAAAHoAAAAAAAADAAAAAAAAegAAAAAAAHoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: Shuttle + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#A4610696' + id: ArrowsGreyscale + decals: + 211: 0,6 + - node: + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 193: 0,6 + 194: 0,4 + - node: + color: '#A4610696' + id: Bot + decals: + 191: 1,6 + - node: + color: '#334E6DC8' + id: BotGreyscale + decals: + 186: 4,-2 + - node: + color: '#79150096' + id: BotGreyscale + decals: + 187: 3,-2 + - node: + color: '#A4610696' + id: BotGreyscale + decals: + 190: 5,-1 + 206: -4,4 + 207: -3,4 + 208: -1,3 + 209: -1,4 + 210: -1,6 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 143: -4,-3 + 192: 0,7 + 195: -1,-4 + 196: 1,-4 + 197: -3,-2 + 198: -4,-2 + 199: 4,-3 + 200: 3,-3 + 201: 3,1 + 202: 3,2 + 203: 3,3 + 204: 4,4 + 205: 5,4 + 217: -3,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 177: 5,1 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndE + decals: + 179: 6,1 + 180: 5,4 + 184: 4,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndN + decals: + 174: 3,3 + 176: 5,2 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndS + decals: + 172: 3,1 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndW + decals: + 181: 4,4 + 185: 3,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkInnerNe + decals: + 178: 5,1 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineE + decals: + 175: 3,2 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineW + decals: + 173: 3,2 + - node: + color: '#A46106F2' + id: BrickTileSteelCornerNe + decals: + 117: 1,4 + - node: + color: '#8D1C99F2' + id: BrickTileSteelCornerNw + decals: + 110: -1,4 + - node: + color: '#A46106F2' + id: BrickTileSteelCornerSe + decals: + 111: 1,-2 + - node: + color: '#8D1C99F2' + id: BrickTileSteelCornerSw + decals: + 104: -1,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndN + decals: + 73: 0,3 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndS + decals: + 72: 0,-1 + - node: + color: '#A46106F2' + id: BrickTileSteelLineE + decals: + 112: 1,-1 + 113: 1,0 + 114: 1,1 + 115: 1,2 + 116: 1,3 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 74: 0,2 + 75: 0,1 + 76: 0,0 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 119: 0,4 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 118: 0,-2 + - node: + color: '#8D1C99F2' + id: BrickTileSteelLineW + decals: + 105: -1,-1 + 106: -1,0 + 107: -1,1 + 108: -1,2 + 109: -1,3 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 77: 0,0 + 78: 0,1 + 79: 0,2 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 138: -3,0 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 133: -5,0 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 142: -3,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 132: -5,-1 + 159: -6,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndE + decals: + 153: -4,1 + 162: -5,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndN + decals: + 157: -6,0 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndW + decals: + 155: -6,1 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNe + decals: + 161: -6,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 160: -6,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 134: -4,0 + 156: -5,1 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 141: -4,-1 + 154: -5,1 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 158: -6,-1 + - node: + cleanable: True + color: '#8D1C9996' + id: Delivery + decals: + 215: 3,-1 + 216: 1,1 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 144: -4,-2 + 145: -3,-2 + 218: -1,-3 + 219: 1,-3 + 220: -2,0 + 221: 2,0 + 222: -3,2 + 223: 0,5 + - node: + color: '#8D1C9996' + id: DeliveryGreyscale + decals: + 212: -5,4 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale + decals: + 91: 0,4 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale180 + decals: + 103: 0,-2 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale270 + decals: + 92: -1,-1 + 93: -1,0 + 94: -1,1 + 95: -1,2 + 96: -1,3 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale90 + decals: + 97: 1,3 + 98: 1,2 + 99: 1,1 + 100: 1,0 + 101: 1,-1 + - node: + color: '#EFB34196' + id: MiniTileCheckerAOverlay + decals: + 26: 0,-1 + 27: 0,0 + 28: 0,1 + 29: 0,2 + 30: 0,3 + - node: + color: '#D381C996' + id: MiniTileCheckerBOverlay + decals: + 31: 0,-1 + 32: 0,0 + 33: 0,1 + 34: 0,2 + 35: 0,3 + - node: + color: '#D4D4D496' + id: MonoOverlay + decals: + 123: -3,0 + 127: -5,0 + 128: -5,-1 + 130: -4,0 + 139: -4,-1 + 140: -3,-1 + - node: + color: '#8D1C9996' + id: OffsetOverlay + decals: + 146: -5,-2 + 147: -6,-2 + 148: -6,-1 + 149: -6,0 + 150: -6,1 + 151: -5,1 + 152: -4,1 + - node: + color: '#A4610696' + id: OffsetOverlay + decals: + 164: 3,1 + 165: 3,2 + 166: 3,3 + 167: 4,4 + 168: 5,4 + 169: 5,2 + 170: 5,1 + 171: 6,1 + 182: 3,-3 + 183: 4,-3 + - node: + color: '#8D1C9996' + id: StandClearGreyscale + decals: + 213: -5,3 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale + decals: + 88: -1,4 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 87: 1,-2 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 86: -1,-2 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 89: 1,4 + - node: + cleanable: True + color: '#8D1C9996' + id: cyka + decals: + 214: 0,-2 + - node: + color: '#8D1C9996' + id: radiation + decals: + 163: -4.0033836,-0.45992756 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 48063 + 0,-1: + 0: 48035 + -1,0: + 0: 47807 + 0,1: + 0: 13075 + 1: 2048 + -1,1: + 0: 34827 + 1: 512 + 0,2: + 0: 3 + 1: 512 + 2: 1024 + -1,2: + 0: 8 + 2: 1024 + 1: 2048 + 1,0: + 0: 13175 + 2: 32768 + 1,1: + 0: 3 + 1: 72 + 1,-1: + 0: 29008 + 1: 8 + -2,0: + 0: 32972 + 2: 8192 + -2,1: + 1: 66 + 0: 8 + -2,-1: + 0: 52288 + 1: 2 + -1,-1: + 0: 48056 + -2,-2: + 1: 32768 + -1,-2: + 2: 12288 + 0: 35840 + 0,-2: + 0: 9728 + 2: 32768 + 1,-2: + 2: 4096 + 1: 8192 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 293.15 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: BecomesStation + id: Sparrow + - type: SpreaderGrid + - type: ImplicitRoof +- proto: AirAlarm + entities: + - uid: 211 + components: + - type: Transform + pos: -0.5,5.5 + parent: 174 + - type: DeviceList + devices: + - 226 + - 222 + - 214 + - 31 + - 168 + - 153 + - 166 + - 171 + - 85 + - 76 + - 86 + - 39 + - 40 + - 370 +- proto: AirlockEngineeringGlass + entities: + - uid: 207 + components: + - type: Transform + pos: 2.5,0.5 + parent: 174 +- proto: AirlockExternal + entities: + - uid: 206 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 174 + - uid: 275 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 174 +- proto: AirlockGlassShuttle + entities: + - uid: 369 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 174 + - uid: 430 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 174 +- proto: AirlockScience + entities: + - uid: 188 + components: + - type: Transform + pos: -2.5,2.5 + parent: 174 +- proto: AirlockScienceGlass + entities: + - uid: 273 + components: + - type: Transform + pos: -1.5,0.5 + parent: 174 + - uid: 313 + components: + - type: Transform + pos: 0.5,5.5 + parent: 174 +- proto: APCBasic + entities: + - uid: 192 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 174 + - uid: 258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 174 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 187 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 174 + - uid: 368 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 174 + - uid: 427 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 174 +- proto: AtmosFixBlockerMarker + entities: + - uid: 12 + components: + - type: Transform + pos: -6.5,3.5 + parent: 174 + - uid: 50 + components: + - type: Transform + pos: 5.5,-4.5 + parent: 174 + - uid: 123 + components: + - type: Transform + pos: 2.5,10.5 + parent: 174 + - uid: 127 + components: + - type: Transform + pos: 3.5,-4.5 + parent: 174 + - uid: 131 + components: + - type: Transform + pos: -1.5,10.5 + parent: 174 + - uid: 137 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 174 + - uid: 138 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 174 + - uid: 140 + components: + - type: Transform + pos: -0.5,10.5 + parent: 174 + - uid: 163 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 174 + - uid: 164 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 174 + - uid: 165 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 174 + - uid: 185 + components: + - type: Transform + pos: 1.5,10.5 + parent: 174 + - uid: 297 + components: + - type: Transform + pos: -6.5,4.5 + parent: 174 + - uid: 320 + components: + - type: Transform + pos: 7.5,3.5 + parent: 174 + - uid: 321 + components: + - type: Transform + pos: 7.5,4.5 + parent: 174 + - uid: 386 + components: + - type: Transform + pos: -5.5,5.5 + parent: 174 + - uid: 388 + components: + - type: Transform + pos: -2.5,6.5 + parent: 174 + - uid: 403 + components: + - type: Transform + pos: 3.5,6.5 + parent: 174 + - uid: 407 + components: + - type: Transform + pos: 6.5,5.5 + parent: 174 + - uid: 416 + components: + - type: Transform + pos: 7.5,-3.5 + parent: 174 +- proto: Autolathe + entities: + - uid: 382 + components: + - type: Transform + pos: 3.5,1.5 + parent: 174 +- proto: BlastDoor + entities: + - uid: 64 + components: + - type: Transform + pos: -3.5,5.5 + parent: 174 +- proto: BlastDoorOpen + entities: + - uid: 202 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 174 + - uid: 252 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 174 + - uid: 501 + components: + - type: Transform + pos: -3.5,2.5 + parent: 174 + - uid: 502 + components: + - type: Transform + pos: -4.5,2.5 + parent: 174 +- proto: BlueprintLithograph + entities: + - uid: 304 + components: + - type: Transform + pos: 4.5,4.5 + parent: 174 +- proto: ButtonFrameCaution + entities: + - uid: 274 + components: + - type: Transform + pos: -4.5,1.5 + parent: 174 + - uid: 281 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 174 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 499 + components: + - type: Transform + pos: -3.5,1.5 + parent: 174 +- proto: CableApcExtension + entities: + - uid: 11 + components: + - type: Transform + pos: -4.5,1.5 + parent: 174 + - uid: 17 + components: + - type: Transform + pos: -5.5,1.5 + parent: 174 + - uid: 20 + components: + - type: Transform + pos: 4.5,0.5 + parent: 174 + - uid: 27 + components: + - type: Transform + pos: -4.5,2.5 + parent: 174 + - uid: 28 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 174 + - uid: 29 + components: + - type: Transform + pos: -0.5,0.5 + parent: 174 + - uid: 34 + components: + - type: Transform + pos: -0.5,7.5 + parent: 174 + - uid: 35 + components: + - type: Transform + pos: 1.5,8.5 + parent: 174 + - uid: 108 + components: + - type: Transform + pos: -0.5,4.5 + parent: 174 + - uid: 110 + components: + - type: Transform + pos: -0.5,5.5 + parent: 174 + - uid: 116 + components: + - type: Transform + pos: 5.5,0.5 + parent: 174 + - uid: 129 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 174 + - uid: 189 + components: + - type: Transform + pos: 4.5,1.5 + parent: 174 + - uid: 205 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 174 + - uid: 212 + components: + - type: Transform + pos: -2.5,2.5 + parent: 174 + - uid: 216 + components: + - type: Transform + pos: 3.5,0.5 + parent: 174 + - uid: 218 + components: + - type: Transform + pos: 6.5,3.5 + parent: 174 + - uid: 231 + components: + - type: Transform + pos: 1.5,3.5 + parent: 174 + - uid: 234 + components: + - type: Transform + pos: -2.5,1.5 + parent: 174 + - uid: 235 + components: + - type: Transform + pos: -0.5,8.5 + parent: 174 + - uid: 245 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 174 + - uid: 247 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 174 + - uid: 248 + components: + - type: Transform + pos: -4.5,0.5 + parent: 174 + - uid: 249 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 174 + - uid: 250 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 174 + - uid: 254 + components: + - type: Transform + pos: -3.5,1.5 + parent: 174 + - uid: 255 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 174 + - uid: 260 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 174 + - uid: 262 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 174 + - uid: 263 + components: + - type: Transform + pos: 2.5,0.5 + parent: 174 + - uid: 272 + components: + - type: Transform + pos: 4.5,2.5 + parent: 174 + - uid: 276 + components: + - type: Transform + pos: -0.5,6.5 + parent: 174 + - uid: 277 + components: + - type: Transform + pos: 4.5,3.5 + parent: 174 + - uid: 278 + components: + - type: Transform + pos: 5.5,3.5 + parent: 174 + - uid: 294 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 174 + - uid: 295 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 174 + - uid: 298 + components: + - type: Transform + pos: -0.5,1.5 + parent: 174 + - uid: 299 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 174 + - uid: 309 + components: + - type: Transform + pos: 1.5,1.5 + parent: 174 + - uid: 312 + components: + - type: Transform + pos: 1.5,4.5 + parent: 174 + - uid: 314 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 174 + - uid: 319 + components: + - type: Transform + pos: 1.5,0.5 + parent: 174 + - uid: 322 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 174 + - uid: 323 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 174 + - uid: 334 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 174 + - uid: 335 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 174 + - uid: 337 + components: + - type: Transform + pos: -1.5,1.5 + parent: 174 + - uid: 338 + components: + - type: Transform + pos: 1.5,6.5 + parent: 174 + - uid: 346 + components: + - type: Transform + pos: -0.5,3.5 + parent: 174 + - uid: 347 + components: + - type: Transform + pos: -0.5,2.5 + parent: 174 + - uid: 348 + components: + - type: Transform + pos: 1.5,7.5 + parent: 174 + - uid: 349 + components: + - type: Transform + pos: 1.5,2.5 + parent: 174 + - uid: 350 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 174 + - uid: 351 + components: + - type: Transform + pos: 1.5,5.5 + parent: 174 + - uid: 362 + components: + - type: Transform + pos: 6.5,0.5 + parent: 174 +- proto: CableHV + entities: + - uid: 305 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 174 + - uid: 315 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 174 + - uid: 317 + components: + - type: Transform + pos: 6.5,0.5 + parent: 174 + - uid: 318 + components: + - type: Transform + pos: 6.5,2.5 + parent: 174 + - uid: 339 + components: + - type: Transform + pos: 6.5,1.5 + parent: 174 + - uid: 440 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 174 +- proto: CableMV + entities: + - uid: 15 + components: + - type: Transform + pos: 4.5,1.5 + parent: 174 + - uid: 36 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 174 + - uid: 103 + components: + - type: Transform + pos: 4.5,-1.5 + parent: 174 + - uid: 106 + components: + - type: Transform + pos: 6.5,0.5 + parent: 174 + - uid: 114 + components: + - type: Transform + pos: 6.5,3.5 + parent: 174 + - uid: 190 + components: + - type: Transform + pos: 4.5,2.5 + parent: 174 + - uid: 210 + components: + - type: Transform + pos: 4.5,3.5 + parent: 174 + - uid: 219 + components: + - type: Transform + pos: -1.5,1.5 + parent: 174 + - uid: 220 + components: + - type: Transform + pos: -1.5,0.5 + parent: 174 + - uid: 228 + components: + - type: Transform + pos: 5.5,0.5 + parent: 174 + - uid: 291 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 174 + - uid: 292 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 174 + - uid: 308 + components: + - type: Transform + pos: 1.5,0.5 + parent: 174 + - uid: 316 + components: + - type: Transform + pos: 5.5,3.5 + parent: 174 + - uid: 336 + components: + - type: Transform + pos: 6.5,2.5 + parent: 174 + - uid: 341 + components: + - type: Transform + pos: -0.5,0.5 + parent: 174 + - uid: 342 + components: + - type: Transform + pos: 0.5,0.5 + parent: 174 + - uid: 345 + components: + - type: Transform + pos: 2.5,0.5 + parent: 174 + - uid: 352 + components: + - type: Transform + pos: 3.5,0.5 + parent: 174 + - uid: 441 + components: + - type: Transform + pos: 4.5,0.5 + parent: 174 +- proto: CableTerminal + entities: + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 174 +- proto: CarpetPurple + entities: + - uid: 472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 174 + - uid: 473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 174 + - uid: 474 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 174 + - uid: 475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 174 + - uid: 476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 174 +- proto: Catwalk + entities: + - uid: 21 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 174 + - uid: 104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 174 + - uid: 105 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 174 + - uid: 111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 174 + - uid: 224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 174 + - uid: 241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 174 + - uid: 270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 174 + - uid: 300 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 174 + - uid: 303 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 174 + - uid: 377 + components: + - type: Transform + pos: 6.5,0.5 + parent: 174 + - uid: 378 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 174 + - uid: 380 + components: + - type: Transform + pos: 4.5,0.5 + parent: 174 + - uid: 410 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 174 + - uid: 411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 174 + - uid: 414 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 174 + - uid: 415 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,0.5 + parent: 174 + - uid: 437 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 174 +- proto: CatwalkSteelTile + entities: + - uid: 38 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,3.5 + parent: 174 + - uid: 43 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 174 + - uid: 51 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 174 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 174 + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 174 + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,5.5 + parent: 174 + - uid: 143 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 174 + - uid: 144 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 174 + - uid: 155 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 174 + - uid: 158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 174 + - uid: 173 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 174 + - uid: 181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,2.5 + parent: 174 + - uid: 264 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 174 + - uid: 367 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 174 + - uid: 376 + components: + - type: Transform + pos: -5.5,0.5 + parent: 174 + - uid: 405 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 174 + - uid: 406 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 174 + - uid: 426 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 174 +- proto: ChairOfficeLight + entities: + - uid: 400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.6327264,0.86944294 + parent: 174 +- proto: ChairPilotSeat + entities: + - uid: 240 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,7.5 + parent: 174 +- proto: CircuitImprinter + entities: + - uid: 3 + components: + - type: Transform + pos: 5.5,4.5 + parent: 174 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 360 + components: + - type: Transform + pos: -5.7577877,1.5236734 + parent: 174 +- proto: ComputerTabletopAnalysisConsole + entities: + - uid: 280 + components: + - type: Transform + pos: -4.5,1.5 + parent: 174 +- proto: ComputerTabletopPowerMonitoring + entities: + - uid: 256 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 174 +- proto: ComputerTabletopResearchAndDevelopment + entities: + - uid: 384 + components: + - type: Transform + pos: -3.5,1.5 + parent: 174 +- proto: ComputerTabletopShuttle + entities: + - uid: 26 + components: + - type: Transform + pos: 0.5,8.5 + parent: 174 +- proto: ComputerTabletopStationRecords + entities: + - uid: 251 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 174 +- proto: ConveyorBelt + entities: + - uid: 53 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,2.5 + parent: 174 + - uid: 90 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,3.5 + parent: 174 + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 174 +- proto: CrateArtifactContainer + entities: + - uid: 84 + components: + - type: Transform + pos: 5.5,2.5 + parent: 174 + - uid: 186 + components: + - type: Transform + pos: 5.5,1.5 + parent: 174 +- proto: CratePlasma + entities: + - uid: 310 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 174 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14923 + 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: + - 311 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: DefibrillatorCabinetFilled + entities: + - uid: 33 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 174 +- proto: EmergencyLight + entities: + - uid: 236 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 174 + - uid: 442 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-0.5 + parent: 174 + - uid: 443 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 174 + - uid: 444 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 174 + - uid: 445 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 174 +- proto: ExosuitFabricator + entities: + - uid: 383 + components: + - type: Transform + pos: 3.5,3.5 + parent: 174 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 174 +- proto: FaxMachineShip + entities: + - uid: 230 + components: + - type: Transform + pos: -0.5,8.5 + parent: 174 +- proto: FirelockGlass + entities: + - uid: 31 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 174 + - type: DeviceNetwork + deviceLists: + - 211 + - uid: 166 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 174 + - type: DeviceNetwork + deviceLists: + - 211 + - uid: 214 + components: + - type: Transform + pos: -1.5,0.5 + parent: 174 + - type: DeviceNetwork + deviceLists: + - 211 + - uid: 370 + components: + - type: Transform + pos: 0.5,5.5 + parent: 174 + - type: DeviceNetwork + deviceLists: + - 211 + - uid: 425 + components: + - type: Transform + pos: 2.5,0.5 + parent: 174 +- proto: FuelBananium + entities: + - uid: 311 + components: + - type: Transform + parent: 310 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GasMixer + entities: + - uid: 169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasOutletInjector + entities: + - uid: 107 + components: + - type: Transform + pos: -2.5,4.5 + parent: 174 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasPassiveVent + entities: + - uid: 428 + components: + - type: Transform + pos: -3.5,4.5 + parent: 174 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 174 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 504 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 174 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 41 + components: + - type: Transform + pos: 4.5,-0.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 151 + components: + - type: Transform + pos: 0.5,7.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeBendAlt1 + entities: + - uid: 133 + components: + - type: Transform + pos: 6.5,0.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 209 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,7.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 23 + components: + - type: Transform + pos: -3.5,3.5 + parent: 174 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 24 + components: + - type: Transform + pos: 0.5,5.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 25 + components: + - type: Transform + pos: 0.5,6.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 58 + components: + - type: Transform + pos: 4.5,2.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 59 + components: + - type: Transform + pos: 4.5,1.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 60 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 61 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-0.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 68 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-1.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 125 + components: + - type: Transform + pos: -0.5,2.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 156 + components: + - type: Transform + pos: 0.5,1.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 157 + components: + - type: Transform + pos: 0.5,2.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 175 + components: + - type: Transform + pos: -0.5,1.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 194 + components: + - type: Transform + pos: -2.5,1.5 + parent: 174 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 217 + components: + - type: Transform + pos: 0.5,4.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 340 + components: + - type: Transform + pos: 0.5,3.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 358 + components: + - type: Transform + pos: -3.5,0.5 + parent: 174 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 359 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 174 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 371 + components: + - type: Transform + pos: -2.5,0.5 + parent: 174 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 372 + components: + - type: Transform + pos: -3.5,1.5 + parent: 174 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 373 + components: + - type: Transform + pos: -3.5,2.5 + parent: 174 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 381 + components: + - type: Transform + pos: -3.5,-0.5 + parent: 174 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 389 + components: + - type: Transform + pos: -2.5,2.5 + parent: 174 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 390 + components: + - type: Transform + pos: -2.5,3.5 + parent: 174 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasPipeStraightAlt1 + entities: + - uid: 22 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 160 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 233 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 253 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 266 + components: + - type: Transform + pos: 0.5,5.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 293 + components: + - type: Transform + pos: 0.5,6.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 324 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 326 + components: + - type: Transform + pos: 0.5,3.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 327 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 343 + components: + - type: Transform + pos: 0.5,1.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 353 + components: + - type: Transform + pos: 0.5,2.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 506 + components: + - type: Transform + pos: -2.5,-1.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 507 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 508 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 509 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 510 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 511 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 512 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 83 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 229 + components: + - type: Transform + pos: 3.5,0.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunctionAlt1 + entities: + - uid: 244 + components: + - type: Transform + pos: 3.5,0.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 307 + components: + - type: Transform + pos: 1.5,0.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 344 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 505 + components: + - type: Transform + pos: -2.5,0.5 + parent: 174 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 73 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-1.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 80 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 174 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 128 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 174 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 238 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 174 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasPressurePumpOn + entities: + - uid: 257 + components: + - type: Transform + pos: -3.5,-1.5 + parent: 174 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 174 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasVentPump + entities: + - uid: 40 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 174 + - type: DeviceNetwork + deviceLists: + - 211 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,7.5 + parent: 174 + - type: DeviceNetwork + deviceLists: + - 211 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 174 + - type: DeviceNetwork + deviceLists: + - 211 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 171 + components: + - type: Transform + pos: -0.5,3.5 + parent: 174 + - type: DeviceNetwork + deviceLists: + - 211 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 226 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-0.5 + parent: 174 + - type: DeviceNetwork + deviceLists: + - 211 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-0.5 + parent: 174 + - type: DeviceNetwork + deviceLists: + - 211 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 174 + - type: DeviceNetwork + deviceLists: + - 211 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 86 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,7.5 + parent: 174 + - type: DeviceNetwork + deviceLists: + - 211 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 174 + - type: DeviceNetwork + deviceLists: + - 211 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 174 + - type: DeviceNetwork + deviceLists: + - 211 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' +- proto: GravityGeneratorMini + entities: + - uid: 413 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 174 +- proto: Grille + entities: + - uid: 37 + components: + - type: Transform + pos: 1.5,9.5 + parent: 174 + - uid: 54 + components: + - type: Transform + pos: 4.5,5.5 + parent: 174 + - uid: 56 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 174 + - uid: 57 + components: + - type: Transform + pos: -6.5,0.5 + parent: 174 + - uid: 71 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 174 + - uid: 75 + components: + - type: Transform + pos: 2.5,7.5 + parent: 174 + - uid: 92 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 174 + - uid: 93 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 174 + - uid: 132 + components: + - type: Transform + pos: 0.5,9.5 + parent: 174 + - uid: 139 + components: + - type: Transform + pos: -0.5,9.5 + parent: 174 + - uid: 145 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 174 + - uid: 147 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 174 + - uid: 149 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 174 + - uid: 150 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 174 + - uid: 161 + components: + - type: Transform + pos: 7.5,0.5 + parent: 174 + - uid: 177 + components: + - type: Transform + pos: -1.5,7.5 + parent: 174 + - uid: 184 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 174 + - uid: 284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 174 + - uid: 365 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 174 + - uid: 366 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 174 + - uid: 422 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 174 +- proto: GrilleDiagonal + entities: + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 174 + - uid: 178 + components: + - type: Transform + pos: 1.5,10.5 + parent: 174 +- proto: Gyroscope + entities: + - uid: 19 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 174 +- proto: HandheldArtifactContainer + entities: + - uid: 96 + components: + - type: Transform + pos: -0.4851327,1.6503674 + parent: 174 +- proto: LockerResearchDirectorFilled + entities: + - uid: 95 + components: + - type: Transform + pos: -0.7140014,6.4977717 + parent: 174 +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 81 + components: + - type: Transform + pos: -0.24525142,6.4977717 + parent: 174 +- proto: LockerWallEVAColorSalvageFilled + entities: + - uid: 55 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 174 +- proto: LockerWallEVAColorScientistFilled + entities: + - uid: 72 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,4.5 + parent: 174 +- proto: MachineArtifactAnalyzer + entities: + - uid: 172 + components: + - type: Transform + pos: -4.5,4.5 + parent: 174 +- proto: MachineFrame + entities: + - uid: 375 + components: + - type: Transform + pos: -4.5,-1.5 + parent: 174 + - uid: 402 + components: + - type: Transform + pos: -5.5,-1.5 + parent: 174 +- proto: MachineMaterialSilo + entities: + - uid: 152 + components: + - type: Transform + pos: 1.5,4.5 + parent: 174 +- proto: NFHolopadShip + entities: + - uid: 201 + components: + - type: Transform + pos: 1.5,6.5 + parent: 174 +- proto: NFLockerScienceFilled + entities: + - uid: 374 + components: + - type: Transform + pos: -5.272024,1.5236734 + parent: 174 +- proto: NFMagnetBoxOre + entities: + - uid: 167 + components: + - type: Transform + pos: 1.5,2.5 + parent: 174 + - type: Conveyed +- proto: NitrogenCanister + entities: + - uid: 136 + components: + - type: Transform + anchored: True + pos: 3.5,-1.5 + parent: 174 + - type: Physics + bodyType: Static +- proto: OreBag + entities: + - uid: 78 + components: + - type: Transform + pos: 1.496444,1.5486134 + parent: 174 + - uid: 89 + components: + - type: Transform + pos: 1.605819,1.4079884 + parent: 174 +- proto: OxygenCanister + entities: + - uid: 176 + components: + - type: Transform + anchored: True + pos: 4.5,-1.5 + parent: 174 + - type: Physics + bodyType: Static +- proto: PaperBin5 + entities: + - uid: 193 + components: + - type: Transform + pos: 1.5,8.5 + parent: 174 +- proto: Pickaxe + entities: + - uid: 121 + components: + - type: Transform + parent: 120 + - type: Physics + canCollide: False + - uid: 122 + components: + - type: Transform + parent: 120 + - type: Physics + canCollide: False +- proto: PortableGeneratorDKJrShuttle + entities: + - uid: 385 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 174 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 174 +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 471 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 174 +- proto: Poweredlight + entities: + - uid: 446 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 174 + - uid: 447 + components: + - type: Transform + pos: 1.5,4.5 + parent: 174 + - uid: 448 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 174 + - uid: 455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 174 + - uid: 456 + components: + - type: Transform + pos: 6.5,1.5 + parent: 174 + - uid: 457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 174 + - uid: 458 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 174 + - uid: 459 + components: + - type: Transform + pos: -5.5,1.5 + parent: 174 + - uid: 460 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 174 + - uid: 461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 174 + - uid: 462 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 174 +- proto: PoweredlightOrange + entities: + - uid: 454 + components: + - type: Transform + pos: 5.5,4.5 + parent: 174 + - uid: 470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,-2.5 + parent: 174 +- proto: PoweredlightPink + entities: + - uid: 399 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 174 + - uid: 449 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 174 + - uid: 450 + components: + - type: Transform + pos: -3.5,-4.5 + parent: 174 + - uid: 451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 174 + - uid: 452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,10.5 + parent: 174 + - uid: 453 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 174 +- proto: Protolathe + entities: + - uid: 330 + components: + - type: Transform + pos: 3.5,2.5 + parent: 174 +- proto: Rack + entities: + - uid: 180 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 174 +- proto: RandomPosterAny + entities: + - uid: 464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 174 + - uid: 466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 174 + - uid: 467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 174 + - uid: 468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,8.5 + parent: 174 + - uid: 484 + components: + - type: Transform + pos: 2.5,2.5 + parent: 174 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 246 + components: + - type: Transform + pos: -5.5,-2.5 + parent: 174 +- proto: ShuttersNormalOpen + entities: + - uid: 477 + components: + - type: Transform + pos: 2.5,7.5 + parent: 174 + - uid: 478 + components: + - type: Transform + pos: -1.5,7.5 + parent: 174 + - uid: 479 + components: + - type: Transform + pos: -0.5,9.5 + parent: 174 + - uid: 480 + components: + - type: Transform + pos: 0.5,9.5 + parent: 174 + - uid: 481 + components: + - type: Transform + pos: 1.5,9.5 + parent: 174 +- proto: ShuttersRadiation + entities: + - uid: 79 + components: + - type: Transform + pos: 6.5,-1.5 + parent: 174 +- proto: ShuttersWindowOpen + entities: + - uid: 486 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 174 + - uid: 488 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 174 + - uid: 489 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 174 + - uid: 490 + components: + - type: Transform + pos: 4.5,5.5 + parent: 174 + - uid: 493 + components: + - type: Transform + pos: 7.5,0.5 + parent: 174 + - uid: 494 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 174 + - uid: 495 + components: + - type: Transform + pos: -6.5,-0.5 + parent: 174 + - uid: 496 + components: + - type: Transform + pos: -3.5,-3.5 + parent: 174 + - uid: 497 + components: + - type: Transform + pos: -2.5,-3.5 + parent: 174 + - uid: 498 + components: + - type: Transform + pos: -6.5,0.5 + parent: 174 +- proto: ShuttleWindow + entities: + - uid: 1 + components: + - type: Transform + pos: 4.5,5.5 + parent: 174 + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,9.5 + parent: 174 + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 174 + - uid: 6 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 174 + - uid: 14 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,7.5 + parent: 174 + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 174 + - uid: 44 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 174 + - uid: 98 + components: + - type: Transform + pos: 1.5,9.5 + parent: 174 + - uid: 99 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-3.5 + parent: 174 + - uid: 100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 174 + - uid: 118 + components: + - type: Transform + pos: -0.5,9.5 + parent: 174 + - uid: 170 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 174 + - uid: 242 + components: + - type: Transform + pos: 0.5,-4.5 + parent: 174 + - uid: 286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 174 + - uid: 354 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 174 + - uid: 417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 174 + - uid: 419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 174 + - uid: 434 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 174 + - uid: 435 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 174 +- proto: ShuttleWindowDiagonal + entities: + - uid: 328 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 174 + - uid: 357 + components: + - type: Transform + pos: 1.5,10.5 + parent: 174 +- proto: ShuttleWindowPlasma + entities: + - uid: 162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 174 + - uid: 183 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 174 +- proto: SignalButtonWindows + entities: + - uid: 208 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 174 + - type: DeviceLinkSource + linkedPorts: + 252: + - - Pressed + - Toggle + 202: + - - Pressed + - Toggle + - uid: 289 + components: + - type: Transform + pos: -4.5,1.5 + parent: 174 + - type: DeviceLinkSource + linkedPorts: + 64: + - - Pressed + - Toggle + - uid: 379 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 174 + - uid: 482 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 174 + - type: DeviceLinkSource + linkedPorts: + 478: + - - Pressed + - Toggle + 479: + - - Pressed + - Toggle + 480: + - - Pressed + - Toggle + 481: + - - Pressed + - Toggle + 477: + - - Pressed + - Toggle + - uid: 491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 174 + - type: DeviceLinkSource + linkedPorts: + 489: + - - Pressed + - Toggle + 488: + - - Pressed + - Toggle + 486: + - - Pressed + - Toggle + 490: + - - Pressed + - Toggle + 493: + - - Pressed + - Toggle + 494: + - - Pressed + - Toggle + - uid: 492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 174 + - type: DeviceLinkSource + linkedPorts: + 498: + - - Pressed + - Toggle + 495: + - - Pressed + - Toggle + 496: + - - Pressed + - Toggle + 497: + - - Pressed + - Toggle + - uid: 500 + components: + - type: Transform + pos: -3.5,1.5 + parent: 174 + - type: DeviceLinkSource + linkedPorts: + 501: + - - Pressed + - Toggle + 502: + - - Pressed + - Toggle +- proto: SignEngineering + entities: + - uid: 465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 174 + - uid: 487 + components: + - type: Transform + pos: 6.5,4.5 + parent: 174 +- proto: SignScience + entities: + - uid: 463 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 174 + - uid: 485 + components: + - type: Transform + pos: -5.5,4.5 + parent: 174 +- proto: SMESBasic + entities: + - uid: 94 + components: + - type: Transform + pos: 6.5,1.5 + parent: 174 +- proto: SpawnDungeonLootMaterialsValuableSingle + entities: + - uid: 154 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.6127033,3.219319 + parent: 174 + - uid: 195 + components: + - type: Transform + pos: 1.6908283,4.2818193 + parent: 174 + - uid: 265 + components: + - type: Transform + pos: 1.4095783,3.734944 + parent: 174 +- proto: SpawnPointContractor + entities: + - uid: 296 + components: + - type: Transform + pos: -0.5,4.5 + parent: 174 +- proto: SpawnPointMercenary + entities: + - uid: 115 + components: + - type: Transform + pos: -0.5,3.5 + parent: 174 +- proto: SpawnPointPilot + entities: + - uid: 204 + components: + - type: Transform + pos: 0.5,7.5 + parent: 174 +- proto: StairBridge + entities: + - uid: 412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 174 +- proto: Stairs + entities: + - uid: 306 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 174 + - uid: 429 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 174 +- proto: StairWhite + entities: + - uid: 401 + components: + - type: Transform + pos: -2.5,1.5 + parent: 174 +- proto: SteelBench + entities: + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 174 + - uid: 135 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,4.5 + parent: 174 +- proto: StorageCanister + entities: + - uid: 221 + components: + - type: Transform + pos: -3.5,-2.5 + parent: 174 + - uid: 223 + components: + - type: Transform + pos: -2.5,-2.5 + parent: 174 +- proto: StructureMeleeWeaponRackWallmountedSalvage + entities: + - uid: 120 + components: + - type: Transform + pos: 2.5,1.5 + parent: 174 + - type: ContainerContainer + containers: + weapon1: !type:ContainerSlot + showEnts: False + occludes: True + ent: 121 + weapon2: !type:ContainerSlot + showEnts: False + occludes: True + ent: 122 + weapon3: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon4: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + weapon5: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: SubstationWallBasic + entities: + - uid: 191 + components: + - type: Transform + pos: 6.5,2.5 + parent: 174 +- proto: TableGlass + entities: + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,2.5 + parent: 174 + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 174 + - uid: 397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 174 +- proto: TableReinforced + entities: + - uid: 45 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,8.5 + parent: 174 + - uid: 46 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 174 + - uid: 47 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,8.5 + parent: 174 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,7.5 + parent: 174 + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,1.5 + parent: 174 + - uid: 124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 174 + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,1.5 + parent: 174 +- proto: Thruster + entities: + - uid: 387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 174 + - uid: 391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 174 + - uid: 392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 174 + - uid: 393 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-4.5 + parent: 174 + - uid: 394 + components: + - type: Transform + pos: 2.5,10.5 + parent: 174 + - uid: 404 + components: + - type: Transform + pos: -1.5,10.5 + parent: 174 + - uid: 424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,3.5 + parent: 174 + - uid: 431 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 174 +- proto: ToolboxElectricalFilled + entities: + - uid: 203 + components: + - type: Transform + pos: -0.5343642,2.6872697 + parent: 174 +- proto: ToolboxMechanicalFilled + entities: + - uid: 109 + components: + - type: Transform + pos: -0.5343642,2.3122697 + parent: 174 +- proto: TwoWayLever + entities: + - uid: 483 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 174 + - type: DeviceLinkSource + linkedPorts: + 90: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 53: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 97: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 361 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 174 +- proto: WallShuttle + entities: + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 174 + - uid: 7 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,9.5 + parent: 174 + - uid: 8 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,3.5 + parent: 174 + - uid: 9 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 174 + - uid: 10 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 174 + - uid: 13 + components: + - type: Transform + pos: 3.5,5.5 + parent: 174 + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 174 + - uid: 30 + components: + - type: Transform + pos: 5.5,5.5 + parent: 174 + - uid: 48 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,4.5 + parent: 174 + - uid: 52 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,4.5 + parent: 174 + - uid: 101 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 174 + - uid: 102 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 174 + - uid: 112 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 174 + - uid: 113 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 174 + - uid: 117 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 174 + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 174 + - uid: 126 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 174 + - uid: 146 + components: + - type: Transform + pos: -4.5,-2.5 + parent: 174 + - uid: 196 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,5.5 + parent: 174 + - uid: 197 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 174 + - uid: 198 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 174 + - uid: 200 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-3.5 + parent: 174 + - uid: 225 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 174 + - uid: 227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,5.5 + parent: 174 + - uid: 239 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,5.5 + parent: 174 + - uid: 243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 174 + - uid: 267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 174 + - uid: 268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,3.5 + parent: 174 + - uid: 271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 174 + - uid: 283 + components: + - type: Transform + pos: 6.5,3.5 + parent: 174 + - uid: 285 + components: + - type: Transform + pos: 6.5,2.5 + parent: 174 + - uid: 287 + components: + - type: Transform + pos: 2.5,8.5 + parent: 174 + - uid: 290 + components: + - type: Transform + pos: 6.5,4.5 + parent: 174 + - uid: 301 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 174 + - uid: 302 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 174 + - uid: 329 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 174 + - uid: 331 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 174 + - uid: 333 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 174 + - uid: 355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 174 + - uid: 356 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 174 + - uid: 395 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 174 + - uid: 398 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 174 + - uid: 408 + components: + - type: Transform + pos: 5.5,-1.5 + parent: 174 + - uid: 409 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 174 + - uid: 418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 174 + - uid: 420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,3.5 + parent: 174 + - uid: 421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 174 + - uid: 423 + components: + - type: Transform + pos: -1.5,8.5 + parent: 174 + - uid: 432 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 174 + - uid: 433 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 174 + - uid: 436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 174 + - uid: 439 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 174 +- proto: WallShuttleDiagonal + entities: + - uid: 62 + components: + - type: Transform + pos: -6.5,4.5 + parent: 174 + - uid: 69 + components: + - type: Transform + pos: -2.5,6.5 + parent: 174 + - uid: 70 + components: + - type: Transform + pos: -5.5,5.5 + parent: 174 + - uid: 199 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 174 + - uid: 232 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,4.5 + parent: 174 + - uid: 269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 174 + - uid: 288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 174 + - uid: 332 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 174 + - uid: 363 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 174 + - uid: 364 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 174 + - uid: 396 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 174 + - uid: 438 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 174 +- proto: WarpPoint + entities: + - uid: 130 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,6.5 + parent: 174 +- proto: WeaponCapacitorRecharger + entities: + - uid: 32 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 174 +... diff --git a/Resources/Maps/_Forge/Shuttles/Science/stratos.yml b/Resources/Maps/_Forge/Shuttles/Science/stratos.yml index 363f9ea78240..5615f81d28e5 100644 --- a/Resources/Maps/_Forge/Shuttles/Science/stratos.yml +++ b/Resources/Maps/_Forge/Shuttles/Science/stratos.yml @@ -1,7361 +1,12555 @@ meta: - format: 6 - postmapinit: false + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 02/02/2026 08:00:55 + entityCount: 1729 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] tilemap: 0: Space 14: FloorBar 30: FloorDark 32: FloorDarkDiagonalMini + 4: FloorDarkOffset + 1: FloorElevatorShaft 46: FloorGlass + 2: FloorMetalDiamond + 5: FloorMiningDark + 8: FloorMiningLight + 3: FloorRGlass + 9: FloorShowroom 92: FloorSteel 99: FloorSteelDirty 103: FloorSteelMono + 12: FloorSteelOffset + 6: FloorTechMaint2 111: FloorWhite 116: FloorWhiteMono + 11: FloorWhiteOffset + 10: FloorWhitePlastic 121: FloorWood 124: Lattice 125: Plating + 7: PlatingDamaged entities: - - proto: "" - entities: - - uid: 1 - components: - - type: MetaData - name: Stratos - - type: Transform - pos: -0.54525757,-0.44343954 - parent: invalid - - type: MapGrid - chunks: - 0,0: - ind: 0,0 - tiles: HgAAAAADHgAAAAACHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHgAAAAADHgAAAAACHgAAAAABfQAAAAAAfAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADbwAAAAADbwAAAAABfQAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAIAAAAAAAIAAAAAAAIAAAAAABXAAAAAADfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAfQAAAAAAdAAAAAACdAAAAAACdAAAAAAAdAAAAAAAfQAAAAAAIAAAAAAAIAAAAAACIAAAAAABXAAAAAABfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACbwAAAAACbwAAAAABbwAAAAADbwAAAAAAbwAAAAABfQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACfQAAAAAAdAAAAAABdAAAAAABdAAAAAAAdAAAAAAAfQAAAAAAIAAAAAAAIAAAAAABIAAAAAACXAAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAABfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAACfQAAAAAAeQAAAAAAeQAAAAAAeQAAAAABeQAAAAACeQAAAAADfQAAAAAAXAAAAAADXAAAAAADXAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAAAfQAAAAAAeQAAAAADeQAAAAADeQAAAAAAeQAAAAADeQAAAAAAXAAAAAADfQAAAAAAfQAAAAAAXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAdAAAAAACfQAAAAAAeQAAAAADeQAAAAADDgAAAAACDgAAAAACDgAAAAAAfQAAAAAAXAAAAAAAXAAAAAADfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAeQAAAAABDgAAAAADDgAAAAABDgAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAADeQAAAAACeQAAAAADDgAAAAAADgAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAADeQAAAAABeQAAAAAADgAAAAAADgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAABXAAAAAADXAAAAAACXAAAAAAAfQAAAAAAXAAAAAADXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 0,-1: - ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,-1: - ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHgAAAAAB - version: 6 - -1,0: - ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADHgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHgAAAAACHgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAbwAAAAACbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAADbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAdAAAAAADdAAAAAADfQAAAAAAbwAAAAACbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAbwAAAAAAbwAAAAAAbwAAAAACbwAAAAADbwAAAAABbwAAAAADbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAADbwAAAAADbwAAAAABbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAdAAAAAADdAAAAAACbwAAAAADdAAAAAADfQAAAAAAfQAAAAAAbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAACdAAAAAAAfQAAAAAAdAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAdAAAAAAAdAAAAAADfQAAAAAAdAAAAAAAbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAdAAAAAADdAAAAAACfQAAAAAAdAAAAAACbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAbwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAXAAAAAABfQAAAAAAXAAAAAACXAAAAAAAXAAAAAAA - version: 6 - 0,1: - ind: 0,1 - tiles: YwAAAAAAYwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAABXAAAAAACXAAAAAADXAAAAAADfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAADXAAAAAABXAAAAAADXAAAAAACXAAAAAABYwAAAAAAXAAAAAACXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABYwAAAAAAXAAAAAACXAAAAAAAXAAAAAAAHgAAAAADHgAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACLgAAAAABLgAAAAADfQAAAAAAXAAAAAABXAAAAAAAYwAAAAAAXAAAAAADYwAAAAAAXAAAAAAAHgAAAAADHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACLgAAAAABLgAAAAADfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAXAAAAAABXAAAAAAAHgAAAAAAHgAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAACLgAAAAAALgAAAAABfQAAAAAAAAAAAAAAfQAAAAAAeQAAAAADeQAAAAABfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAABeQAAAAAAeQAAAAABeQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAAAeQAAAAACeQAAAAADeQAAAAABeQAAAAACfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAeQAAAAABeQAAAAADeQAAAAABeQAAAAACeQAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAeQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -1,1: - ind: -1,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfQAAAAAAbwAAAAADbwAAAAACXAAAAAACXAAAAAACYwAAAAAAXAAAAAACXAAAAAADYwAAAAAAXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAABYwAAAAAAXAAAAAABXAAAAAACYwAAAAAAXAAAAAAAXAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAACHgAAAAABXAAAAAAAYwAAAAAAXAAAAAAAYwAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAAAHgAAAAAAXAAAAAAAXAAAAAAAYwAAAAAAXAAAAAAAXAAAAAADXAAAAAAAfQAAAAAALgAAAAACLgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAHgAAAAADHgAAAAABXAAAAAAAXAAAAAACXAAAAAABXAAAAAACfQAAAAAAfQAAAAAAfQAAAAAALgAAAAACLgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAXAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAfQAAAAAALgAAAAABLgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAACXAAAAAAAXAAAAAADXAAAAAACXAAAAAADfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAXAAAAAADZwAAAAACZwAAAAAAZwAAAAAAXAAAAAABfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - 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: '#EFB34196' - id: Bot - decals: - 174: -7,20 - - node: - color: '#EFB341FF' - id: Bot - decals: - 60: -6,20 - - node: - color: '#D381C9FF' - id: BotGreyscale - decals: - 26: -4,8 - 31: -4,7 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNe - decals: - 40: 0,6 - 52: 0,10 - - node: - color: '#D4D4D496' - id: BrickTileWhiteCornerNe - decals: - 164: 9,19 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerNe - decals: - 63: -5,19 - 64: -6,20 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNw - decals: - 39: -2,6 - 53: -2,10 - - node: - color: '#D4D4D496' - id: BrickTileWhiteCornerNw - decals: - 82: 5,19 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerNw - decals: - 168: -9,20 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSe - decals: - 44: 0,2 - 55: 0,8 - - node: - color: '#D4D4D496' - id: BrickTileWhiteCornerSe - decals: - 83: 7,16 - 165: 9,18 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSe - decals: - 66: -5,16 - - node: - color: '#791500FF' - id: BrickTileWhiteCornerSw - decals: - 37: 4,10 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSw - decals: - 38: -2,2 - 54: -2,8 - - node: - color: '#D4D4D496' - id: BrickTileWhiteCornerSw - decals: - 84: 5,16 - - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSw - decals: - 65: -7,16 - 169: -9,18 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerNe - decals: - 80: -3,17 - - node: - color: '#EFB34196' - id: BrickTileWhiteInnerNe - decals: - 67: -6,19 - - node: - color: '#334E6DC8' - id: BrickTileWhiteInnerNw - decals: - 81: 3,17 - - node: - color: '#D4D4D496' - id: BrickTileWhiteInnerSe - decals: - 89: 7,18 - - node: - color: '#EFB34196' - id: BrickTileWhiteInnerSw - decals: - 68: -7,18 - - node: - color: '#D381C996' - id: BrickTileWhiteLineE - decals: - 41: 0,5 - 42: 0,4 - 45: 0,3 - 58: 0,9 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineE - decals: - 85: 7,17 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineE - decals: - 61: -5,18 - 62: -5,17 - - node: - color: '#334E6DC8' - id: BrickTileWhiteLineN - decals: - 75: -2,17 - 76: -1,17 - 77: 0,17 - 78: 2,17 - 79: 1,17 - - node: - color: '#D381C996' - id: BrickTileWhiteLineN - decals: - 46: -1,6 - 56: -1,10 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineN - decals: - 87: 6,19 - 88: 7,19 - 163: 8,19 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineN - decals: - 172: -8,20 - 173: -7,20 - - node: - color: '#79150096' - id: BrickTileWhiteLineS - decals: - 96: 3,15 - 97: 1,15 - - node: - color: '#791500FF' - id: BrickTileWhiteLineS - decals: - 32: 5,10 - 33: 6,10 - - node: - color: '#D381C996' - id: BrickTileWhiteLineS - decals: - 43: -1,2 - 57: -1,8 - 98: 0,15 - 99: -1,15 - 100: -2,15 - 101: -3,15 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineS - decals: - 86: 6,16 - 166: 8,18 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineS - decals: - 70: -6,16 - 171: -8,18 - - node: - color: '#791500FF' - id: BrickTileWhiteLineW - decals: - 34: 4,13 - 35: 4,12 - 36: 4,11 - - node: - color: '#D381C996' - id: BrickTileWhiteLineW - decals: - 47: -2,5 - 48: -2,4 - 49: -2,3 - 59: -2,9 - - node: - color: '#D4D4D496' - id: BrickTileWhiteLineW - decals: - 90: 5,18 - 91: 5,17 - - node: - color: '#EFB34196' - id: BrickTileWhiteLineW - decals: - 69: -7,17 - 170: -9,19 - - node: - color: '#FFFFFFFF' - id: Caution - decals: - 103: 8,7 - - node: - color: '#D381C996' - id: CheckerNWSE - decals: - 9: 2,5 - 10: 3,5 - 11: 4,5 - 12: 5,5 - 50: 1,2 - 51: 2,2 - 138: -7,6 - 139: -6,6 - 140: -5,6 - 141: -4,6 - 142: -4,5 - 143: -5,5 - 155: -6,5 - 156: -7,5 - - node: - color: '#D4D4D496' - id: CheckerNWSE - decals: - 92: 4,19 - 93: 5,15 - 94: 6,15 - 95: 8,20 - 167: 9,20 - - node: - color: '#EFB34196' - id: CheckerNWSE - decals: - 71: -6,15 - 72: -5,15 - 73: -4,19 - - node: - color: '#FFFFFFFF' - id: Delivery - decals: - 102: 0,0 - 157: -9,3 - 161: 11,19 - 162: -11,19 - - node: - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 144: -9,6 - 145: -10,6 - 149: -7,6 - 150: -4,6 - 160: -5,5 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavy - decals: - 132: 8,8 - 137: 5,11 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtHeavyMonotile - decals: - 105: -7,18 - 130: 10,7 - 131: 9,7 - - node: - color: '#FFFFFFFF' - id: DirtLight - decals: - 146: -10,5 - 151: -4,5 - 152: -5,8 - 153: -9,8 - 154: -2,5 - 158: -7,5 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtLight - decals: - 113: -1,6 - 114: -2,6 - 115: -1,5 - 116: -1,3 - 117: -1,8 - 118: -1,9 - 119: -1,12 - 120: -1,16 - 121: 3,17 - 122: -3,16 - 123: 6,18 - 124: 8,7 - 125: 9,7 - 126: 10,6 - 127: 10,5 - 128: 10,4 - 129: 10,7 - 134: 2,15 - 135: 5,10 - - node: - color: '#FFFFFFFF' - id: DirtMedium - decals: - 147: -8,3 - 148: -6,6 - 159: -6,5 - - node: - cleanable: True - color: '#FFFFFFFF' - id: DirtMedium - decals: - 106: -1,13 - 107: -4,8 - 108: -1,3 - 109: 0,4 - 110: 0,5 - 111: 3,5 - 112: 5,5 - 133: 3,15 - 136: 5,12 - - node: - color: '#FFFFFFFF' - id: LoadingArea - decals: - 104: -8,23 - - node: - color: '#D381C9FF' - id: WarnCornerGreyscaleNE - decals: - 27: -4,10 - - node: - color: '#D381C9FF' - id: WarnCornerGreyscaleNW - decals: - 28: -5,10 - - node: - color: '#D381C9FF' - id: WarnCornerGreyscaleSE - decals: - 29: -4,9 - - node: - color: '#D381C9FF' - id: WarnCornerGreyscaleSW - decals: - 30: -5,9 - - node: - color: '#EFB341FF' - id: WarnCornerNE - decals: - 21: -7,24 - - node: - color: '#EFB341FF' - id: WarnCornerNW - decals: - 22: -9,24 - - node: - color: '#EFB341FF' - id: WarnCornerSE - decals: - 20: -7,22 - - node: - color: '#EFB341FF' - id: WarnCornerSW - decals: - 19: -9,22 - - node: - color: '#FFFFFFFF' - id: WarnCornerSmallSW - decals: - 7: 10,7 - - node: - color: '#FFFFFFFF' - id: WarnFull - decals: - 13: -10,24 - 14: -10,23 - 15: -10,22 - 16: -6,23 - 17: -6,22 - 25: -6,24 - - node: - color: '#EFB341FF' - id: WarnLineE - decals: - 74: -7,23 - - node: - color: '#FFFFFFFF' - id: WarnLineE - decals: - 8: 7,9 - - node: - color: '#EFB341FF' - id: WarnLineN - decals: - 24: -8,22 - - node: - color: '#FFFFFFFF' - id: WarnLineN - decals: - 0: 7,7 - 1: 8,7 - 2: 9,7 - - node: - color: '#EFB341FF' - id: WarnLineS - decals: - 18: -9,23 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 3: 10,6 - 4: 10,5 - 5: 10,4 - 6: 10,3 - - node: - color: '#EFB341FF' - id: WarnLineW - decals: - 23: -8,24 - - type: GridAtmosphere - version: 2 - data: - tiles: - 0,0: - 0: 65535 - 0,1: - 0: 65535 - 0,3: - 0: 65535 - 0,2: - 0: 65535 - 1,0: - 1: 656 - 0: 64840 - 1,1: - 0: 65535 - 1,2: - 0: 65535 - 1,3: - 0: 65407 - 1: 128 - 2,0: - 0: 65415 - 1: 120 - 2,1: - 0: 65535 - 2,2: - 0: 65535 - 2,3: - 1: 33536 - 0: 28672 - 0,-1: - 0: 61440 - -1,-1: - 0: 57344 - -3,0: - 1: 4563 - 0: 60972 - -3,1: - 1: 4369 - 0: 61166 - -3,2: - 1: 3581 - 0: 57858 - -3,3: - 1: 10240 - 0: 49152 - -2,0: - 0: 63299 - 1: 2096 - -2,1: - 0: 65535 - -2,2: - 0: 64991 - 1: 544 - -2,3: - 1: 288 - 0: 65228 - -1,0: - 1: 16 - 0: 65518 - -1,1: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - 0,4: - 0: 65535 - 0,5: - 0: 4095 - 1,4: - 0: 65535 - 1,5: - 0: 61167 - 1,6: - 0: 1262 - 1: 2048 - 2,4: - 0: 65535 - 2,5: - 0: 65535 - 2,6: - 0: 52991 - 1: 8448 - -3,4: - 0: 65534 - -3,5: - 0: 61183 - -2,4: - 0: 65535 - -2,5: - 0: 65535 - -2,6: - 0: 1279 - 1: 768 - -1,4: - 0: 65535 - -1,5: - 0: 3823 - 3,0: - 1: 4369 - 3,1: - 1: 4369 - 3,2: - 1: 1 - 3,-1: - 1: 4096 - -3,-1: - 1: 4096 - 2,7: - 0: 140 - -3,6: - 0: 28398 - 1: 32768 - -3,7: - 0: 38 - 3,4: - 0: 4368 - 3,5: - 0: 17 - uniqueMixes: - - volume: 2500 - temperature: 293.15 - moles: - - 21.824879 - - 82.10312 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - chunkSize: 4 - - type: GasTileOverlay - - type: RadiationGridResistance - - type: BecomesStation - id: Stratos - - proto: AirAlarm - entities: - - uid: 835 - components: - - type: Transform - pos: -2.5,18.5 - parent: 1 - - type: DeviceList - devices: - - 836 - - 642 - - 776 - - 655 - - 752 - - 706 - - 729 - - 719 - - 705 - - type: AtmosDevice - joinedGrid: 1 - - uid: 838 - components: - - type: Transform - pos: -5.5,8.5 - parent: 1 - - type: DeviceList - devices: - - 845 - - 844 - - 1050 - - 1031 - - 770 - - 392 - - 389 - - type: AtmosDevice - joinedGrid: 1 - - proto: AirCanister - entities: - - uid: 543 - components: - - type: Transform - anchored: True - pos: -3.5,13.5 - parent: 1 - - type: Physics - bodyType: Static - - type: AtmosDevice - joinedGrid: 1 - - proto: Airlock - entities: - - uid: 983 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,16.5 - parent: 1 - - proto: AirlockCargo - entities: - - uid: 65 - components: - - type: Transform - pos: 7.5,9.5 - parent: 1 - - proto: AirlockCargoGlass - entities: - - uid: 86 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,21.5 - parent: 1 - - uid: 453 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,16.5 - parent: 1 - - uid: 454 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,17.5 - parent: 1 - - proto: AirlockCommandGlass - entities: - - uid: 266 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,18.5 - parent: 1 - - proto: AirlockExternalGlass - entities: - - uid: 43 - components: - - type: Transform - pos: 10.5,18.5 - parent: 1 - - uid: 45 - components: - - type: Transform - pos: -9.5,18.5 - parent: 1 - - uid: 126 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,4.5 - parent: 1 - - uid: 158 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,4.5 - parent: 1 - - uid: 294 - components: - - type: Transform - pos: -0.5,1.5 - parent: 1 - - uid: 295 - components: - - type: Transform - pos: 1.5,1.5 - parent: 1 - - uid: 304 - components: - - type: Transform - pos: -9.5,20.5 - parent: 1 - - uid: 318 - components: - - type: Transform - pos: 10.5,20.5 - parent: 1 - - proto: AirlockGlass - entities: - - uid: 252 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,20.5 - parent: 1 - - uid: 437 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,14.5 - parent: 1 - - uid: 438 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,14.5 - parent: 1 - - uid: 441 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,17.5 - parent: 1 - - uid: 446 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,16.5 - parent: 1 - - proto: AirlockGlassShuttle - entities: - - uid: 205 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 1 - - uid: 206 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 1 - - uid: 1062 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,20.5 - parent: 1 - - uid: 1063 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,18.5 - parent: 1 - - uid: 1064 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,20.5 - parent: 1 - - uid: 1065 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,18.5 - parent: 1 - - proto: AirlockMaint - entities: - - uid: 507 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,12.5 - parent: 1 - - proto: AirlockScienceGlass - entities: - - uid: 390 - components: - - type: Transform - pos: -7.5,6.5 - parent: 1 - - uid: 400 - components: - - type: Transform - pos: -2.5,6.5 - parent: 1 - - uid: 401 - components: - - type: Transform - pos: -2.5,5.5 - parent: 1 - - uid: 402 - components: - - type: Transform - pos: 1.5,5.5 - parent: 1 - - uid: 455 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,14.5 - parent: 1 - - uid: 457 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,11.5 - parent: 1 - - uid: 458 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,7.5 - parent: 1 - - uid: 1041 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,7.5 - parent: 1 - - proto: AirSensor - entities: - - uid: 836 - components: - - type: Transform - pos: 0.5,16.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 835 - - uid: 1031 - components: - - type: Transform - pos: -4.5,5.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 838 - - proto: AmeController - entities: - - uid: 240 - components: - - type: Transform - pos: 7.5,6.5 - parent: 1 - - type: AmeController - injecting: True - - type: ContainerContainer - containers: - AmeFuel: !type:ContainerSlot - showEnts: False - occludes: True - ent: 85 - - proto: AmeJar - entities: - - uid: 85 - components: - - type: Transform - parent: 240 - - type: Physics - canCollide: False - - uid: 219 - components: - - type: Transform - pos: 8.537659,6.5074883 - parent: 1 - - uid: 233 - components: - - type: Transform - pos: 8.333996,6.524457 - parent: 1 - - proto: AmeShielding - entities: - - uid: 52 - components: - - type: Transform - pos: 9.5,5.5 - parent: 1 - - uid: 53 - components: - - type: Transform - pos: 8.5,5.5 - parent: 1 - - uid: 62 - components: - - type: Transform - pos: 7.5,5.5 - parent: 1 - - uid: 66 - components: - - type: Transform - pos: 8.5,4.5 - parent: 1 - - type: PointLight - radius: 2 - enabled: True - - uid: 79 - components: - - type: Transform - pos: 8.5,3.5 - parent: 1 - - uid: 89 - components: - - type: Transform - pos: 7.5,3.5 - parent: 1 - - uid: 92 - components: - - type: Transform - pos: 9.5,4.5 - parent: 1 - - uid: 160 - components: - - type: Transform - pos: 7.5,4.5 - parent: 1 - - uid: 238 - components: - - type: Transform - pos: 9.5,3.5 - parent: 1 - - proto: APCBasic - entities: - - uid: 511 - components: - - type: Transform - pos: -2.5,4.5 - parent: 1 - - uid: 512 - components: - - type: Transform - pos: 3.5,18.5 - parent: 1 - - uid: 513 - components: - - type: Transform - pos: -4.5,20.5 - parent: 1 - - uid: 611 - components: - - type: Transform - pos: 7.5,8.5 - parent: 1 - - proto: AtmosDeviceFanTiny - entities: - - uid: 55 - components: - - type: Transform - pos: -4.5,22.5 - parent: 1 - - uid: 56 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,20.5 - parent: 1 - - uid: 59 - components: - - type: Transform - pos: -4.5,23.5 - parent: 1 - - uid: 77 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,18.5 - parent: 1 - - uid: 78 - components: - - type: Transform - pos: -4.5,24.5 - parent: 1 - - uid: 122 - components: - - type: Transform - pos: -10.5,23.5 - parent: 1 - - uid: 177 - components: - - type: Transform - pos: -10.5,24.5 - parent: 1 - - uid: 209 - components: - - type: Transform - pos: -0.5,-0.5 - parent: 1 - - uid: 210 - components: - - type: Transform - pos: 1.5,-0.5 - parent: 1 - - uid: 298 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,18.5 - parent: 1 - - uid: 299 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,20.5 - parent: 1 - - uid: 344 - components: - - type: Transform - pos: -10.5,22.5 - parent: 1 - - uid: 911 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,4.5 - parent: 1 - - uid: 913 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,4.5 - parent: 1 - - uid: 921 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,7.5 - parent: 1 - - proto: AtmosFixBlockerMarker - entities: - - uid: 137 - components: - - type: Transform - pos: -8.5,10.5 - parent: 1 - - uid: 297 - components: - - type: Transform - pos: 9.5,14.5 - parent: 1 - - uid: 331 - components: - - type: Transform - pos: -9.5,8.5 - parent: 1 - - uid: 336 - components: - - type: Transform - pos: -8.5,8.5 - parent: 1 - - uid: 345 - components: - - type: Transform - pos: -8.5,9.5 - parent: 1 - - uid: 388 - components: - - type: Transform - pos: -9.5,9.5 - parent: 1 - - uid: 412 - components: - - type: Transform - pos: -10.5,9.5 - parent: 1 - - uid: 857 - components: - - type: Transform - pos: -11.5,4.5 - parent: 1 - - uid: 858 - components: - - type: Transform - pos: -4.5,2.5 - parent: 1 - - uid: 859 - components: - - type: Transform - pos: -3.5,1.5 - parent: 1 - - uid: 860 - components: - - type: Transform - pos: -6.5,1.5 - parent: 1 - - uid: 861 - components: - - type: Transform - pos: -7.5,1.5 - parent: 1 - - uid: 862 - components: - - type: Transform - pos: -8.5,1.5 - parent: 1 - - uid: 863 - components: - - type: Transform - pos: -9.5,1.5 - parent: 1 - - uid: 864 - components: - - type: Transform - pos: -10.5,0.5 - parent: 1 - - uid: 865 - components: - - type: Transform - pos: -11.5,-0.5 - parent: 1 - - uid: 866 - components: - - type: Transform - pos: -11.5,0.5 - parent: 1 - - uid: 867 - components: - - type: Transform - pos: -11.5,1.5 - parent: 1 - - uid: 868 - components: - - type: Transform - pos: -11.5,3.5 - parent: 1 - - uid: 869 - components: - - type: Transform - pos: -11.5,2.5 - parent: 1 - - uid: 870 - components: - - type: Transform - pos: -11.5,5.5 - parent: 1 - - uid: 871 - components: - - type: Transform - pos: -11.5,6.5 - parent: 1 - - uid: 872 - components: - - type: Transform - pos: -11.5,7.5 - parent: 1 - - uid: 873 - components: - - type: Transform - pos: -11.5,8.5 - parent: 1 - - uid: 874 - components: - - type: Transform - pos: -11.5,9.5 - parent: 1 - - uid: 875 - components: - - type: Transform - pos: -11.5,10.5 - parent: 1 - - uid: 876 - components: - - type: Transform - pos: -6.5,13.5 - parent: 1 - - uid: 877 - components: - - type: Transform - pos: -6.5,10.5 - parent: 1 - - uid: 878 - components: - - type: Transform - pos: -6.5,9.5 - parent: 1 - - uid: 879 - components: - - type: Transform - pos: -7.5,14.5 - parent: 1 - - uid: 880 - components: - - type: Transform - pos: -10.5,15.5 - parent: 1 - - uid: 881 - components: - - type: Transform - pos: 12.5,2.5 - parent: 1 - - uid: 882 - components: - - type: Transform - pos: -8.5,27.5 - parent: 1 - - uid: 883 - components: - - type: Transform - pos: -7.5,26.5 - parent: 1 - - uid: 884 - components: - - type: Transform - pos: -6.5,26.5 - parent: 1 - - uid: 885 - components: - - type: Transform - pos: 7.5,26.5 - parent: 1 - - uid: 886 - components: - - type: Transform - pos: 8.5,26.5 - parent: 1 - - uid: 887 - components: - - type: Transform - pos: 9.5,27.5 - parent: 1 - - uid: 888 - components: - - type: Transform - pos: 12.5,8.5 - parent: 1 - - uid: 889 - components: - - type: Transform - pos: 12.5,7.5 - parent: 1 - - uid: 890 - components: - - type: Transform - pos: 12.5,6.5 - parent: 1 - - uid: 891 - components: - - type: Transform - pos: 12.5,5.5 - parent: 1 - - uid: 892 - components: - - type: Transform - pos: 12.5,4.5 - parent: 1 - - uid: 893 - components: - - type: Transform - pos: 12.5,3.5 - parent: 1 - - uid: 894 - components: - - type: Transform - pos: 12.5,1.5 - parent: 1 - - uid: 895 - components: - - type: Transform - pos: 12.5,0.5 - parent: 1 - - uid: 896 - components: - - type: Transform - pos: 12.5,-0.5 - parent: 1 - - uid: 897 - components: - - type: Transform - pos: 11.5,0.5 - parent: 1 - - uid: 898 - components: - - type: Transform - pos: 10.5,1.5 - parent: 1 - - uid: 899 - components: - - type: Transform - pos: 9.5,1.5 - parent: 1 - - uid: 900 - components: - - type: Transform - pos: 8.5,1.5 - parent: 1 - - uid: 901 - components: - - type: Transform - pos: 7.5,1.5 - parent: 1 - - uid: 902 - components: - - type: Transform - pos: 5.5,2.5 - parent: 1 - - uid: 903 - components: - - type: Transform - pos: 4.5,1.5 - parent: 1 - - uid: 904 - components: - - type: Transform - pos: 7.5,13.5 - parent: 1 - - uid: 905 - components: - - type: Transform - pos: 8.5,14.5 - parent: 1 - - uid: 906 - components: - - type: Transform - pos: 11.5,15.5 - parent: 1 - - uid: 1040 - components: - - type: Transform - pos: -9.5,10.5 - parent: 1 - - uid: 1055 - components: - - type: Transform - pos: -8.5,14.5 - parent: 1 - - proto: Autolathe - entities: - - uid: 1045 - components: - - type: Transform - pos: -4.5,4.5 - parent: 1 - - proto: BarSign - entities: - - uid: 580 - components: - - type: Transform - pos: 5.5,14.5 - parent: 1 - - proto: Bed - entities: - - uid: 250 - components: - - type: Transform - pos: 8.5,24.5 - parent: 1 - - uid: 279 - components: - - type: Transform - pos: 9.5,24.5 - parent: 1 - - uid: 282 - components: - - type: Transform - pos: 6.5,24.5 - parent: 1 - - uid: 315 - components: - - type: Transform - pos: 7.5,24.5 - parent: 1 - - proto: BedsheetCentcom - entities: - - uid: 996 - components: - - type: Transform - pos: 9.5,24.5 - parent: 1 - - proto: BedsheetPurple - entities: - - uid: 998 - components: - - type: Transform - pos: 7.5,24.5 - parent: 1 - - proto: BedsheetRainbow - entities: - - uid: 997 - components: - - type: Transform - pos: 8.5,24.5 - parent: 1 - - proto: BedsheetRD - entities: - - uid: 999 - components: - - type: Transform - pos: 6.5,24.5 - parent: 1 - - proto: BenchSofaCorpCorner - entities: - - uid: 595 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,8.5 - parent: 1 - - type: Physics - canCollide: False - bodyType: Static - - type: Fixtures - fixtures: {} - - proto: BenchSofaCorpLeft - entities: - - uid: 570 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,9.5 - parent: 1 - - type: Physics - bodyType: Static - - proto: BenchSofaCorpMiddle - entities: - - uid: 565 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,8.5 - parent: 1 - - type: Physics - bodyType: Static - - proto: BenchSofaCorpRight - entities: - - uid: 556 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,8.5 - parent: 1 - - type: Physics - bodyType: Static - - proto: BlastDoor - entities: - - uid: 151 - components: - - type: Transform - pos: -10.5,9.5 - parent: 1 - - type: DeviceLinkSink - links: - - 1049 - - uid: 419 - components: - - type: Transform - pos: -4.5,24.5 - parent: 1 - - type: DeviceLinkSink - links: - - 64 - - uid: 420 - components: - - type: Transform - pos: -4.5,23.5 - parent: 1 - - type: DeviceLinkSink - links: - - 64 - - uid: 421 - components: - - type: Transform - pos: -4.5,22.5 - parent: 1 - - type: DeviceLinkSink - links: - - 64 - - uid: 422 - components: - - type: Transform - pos: -10.5,24.5 - parent: 1 - - type: DeviceLinkSink - links: - - 64 - - uid: 423 - components: - - type: Transform - pos: -10.5,23.5 - parent: 1 - - type: DeviceLinkSink - links: - - 64 - - uid: 424 - components: - - type: Transform - pos: -10.5,22.5 - parent: 1 - - type: DeviceLinkSink - links: - - 64 - - proto: BoxInflatable - entities: - - uid: 312 - components: - - type: Transform - pos: 8.3826275,10.656089 - parent: 1 - - proto: CableApcExtension - entities: - - uid: 10 - components: - - type: Transform - pos: -1.5,16.5 - parent: 1 - - uid: 394 - components: - - type: Transform - pos: -7.5,7.5 - parent: 1 - - uid: 395 - components: - - type: Transform - pos: -6.5,7.5 - parent: 1 - - uid: 397 - components: - - type: Transform - pos: -8.5,5.5 - parent: 1 - - uid: 398 - components: - - type: Transform - pos: -4.5,7.5 - parent: 1 - - uid: 399 - components: - - type: Transform - pos: -8.5,6.5 - parent: 1 - - uid: 411 - components: - - type: Transform - pos: -3.5,5.5 - parent: 1 - - uid: 413 - components: - - type: Transform - pos: -5.5,7.5 - parent: 1 - - uid: 479 - components: - - type: Transform - pos: -2.5,16.5 - parent: 1 - - uid: 561 - components: - - type: Transform - pos: -4.5,20.5 - parent: 1 - - uid: 562 - components: - - type: Transform - pos: -5.5,20.5 - parent: 1 - - uid: 563 - components: - - type: Transform - pos: -6.5,20.5 - parent: 1 - - uid: 564 - components: - - type: Transform - pos: -7.5,20.5 - parent: 1 - - uid: 566 - components: - - type: Transform - pos: -7.5,19.5 - parent: 1 - - uid: 567 - components: - - type: Transform - pos: -7.5,18.5 - parent: 1 - - uid: 568 - components: - - type: Transform - pos: -7.5,17.5 - parent: 1 - - uid: 569 - components: - - type: Transform - pos: -7.5,16.5 - parent: 1 - - uid: 571 - components: - - type: Transform - pos: -7.5,21.5 - parent: 1 - - uid: 572 - components: - - type: Transform - pos: -7.5,22.5 - parent: 1 - - uid: 573 - components: - - type: Transform - pos: -7.5,23.5 - parent: 1 - - uid: 574 - components: - - type: Transform - pos: -7.5,24.5 - parent: 1 - - uid: 575 - components: - - type: Transform - pos: 3.5,18.5 - parent: 1 - - uid: 576 - components: - - type: Transform - pos: 3.5,17.5 - parent: 1 - - uid: 577 - components: - - type: Transform - pos: 3.5,16.5 - parent: 1 - - uid: 578 - components: - - type: Transform - pos: 2.5,16.5 - parent: 1 - - uid: 579 - components: - - type: Transform - pos: 1.5,16.5 - parent: 1 - - uid: 581 - components: - - type: Transform - pos: 0.5,16.5 - parent: 1 - - uid: 582 - components: - - type: Transform - pos: 0.5,17.5 - parent: 1 - - uid: 583 - components: - - type: Transform - pos: 0.5,18.5 - parent: 1 - - uid: 584 - components: - - type: Transform - pos: 0.5,19.5 - parent: 1 - - uid: 585 - components: - - type: Transform - pos: 0.5,20.5 - parent: 1 - - uid: 587 - components: - - type: Transform - pos: -0.5,16.5 - parent: 1 - - uid: 589 - components: - - type: Transform - pos: -0.5,15.5 - parent: 1 - - uid: 590 - components: - - type: Transform - pos: -0.5,14.5 - parent: 1 - - uid: 591 - components: - - type: Transform - pos: -0.5,13.5 - parent: 1 - - uid: 593 - components: - - type: Transform - pos: 4.5,16.5 - parent: 1 - - uid: 594 - components: - - type: Transform - pos: 5.5,16.5 - parent: 1 - - uid: 596 - components: - - type: Transform - pos: 6.5,16.5 - parent: 1 - - uid: 597 - components: - - type: Transform - pos: 7.5,16.5 - parent: 1 - - uid: 598 - components: - - type: Transform - pos: 8.5,16.5 - parent: 1 - - uid: 600 - components: - - type: Transform - pos: 6.5,17.5 - parent: 1 - - uid: 601 - components: - - type: Transform - pos: 6.5,18.5 - parent: 1 - - uid: 602 - components: - - type: Transform - pos: 6.5,19.5 - parent: 1 - - uid: 603 - components: - - type: Transform - pos: 6.5,20.5 - parent: 1 - - uid: 604 - components: - - type: Transform - pos: 6.5,21.5 - parent: 1 - - uid: 605 - components: - - type: Transform - pos: 6.5,22.5 - parent: 1 - - uid: 606 - components: - - type: Transform - pos: 6.5,23.5 - parent: 1 - - uid: 607 - components: - - type: Transform - pos: 6.5,24.5 - parent: 1 - - uid: 608 - components: - - type: Transform - pos: 7.5,24.5 - parent: 1 - - uid: 609 - components: - - type: Transform - pos: 8.5,24.5 - parent: 1 - - uid: 610 - components: - - type: Transform - pos: 9.5,24.5 - parent: 1 - - uid: 613 - components: - - type: Transform - pos: 7.5,8.5 - parent: 1 - - uid: 614 - components: - - type: Transform - pos: 7.5,9.5 - parent: 1 - - uid: 615 - components: - - type: Transform - pos: 6.5,9.5 - parent: 1 - - uid: 616 - components: - - type: Transform - pos: 5.5,9.5 - parent: 1 - - uid: 617 - components: - - type: Transform - pos: 4.5,9.5 - parent: 1 - - uid: 618 - components: - - type: Transform - pos: 3.5,9.5 - parent: 1 - - uid: 620 - components: - - type: Transform - pos: 3.5,10.5 - parent: 1 - - uid: 621 - components: - - type: Transform - pos: 3.5,11.5 - parent: 1 - - uid: 622 - components: - - type: Transform - pos: 7.5,9.5 - parent: 1 - - uid: 623 - components: - - type: Transform - pos: 7.5,7.5 - parent: 1 - - uid: 624 - components: - - type: Transform - pos: 5.5,7.5 - parent: 1 - - uid: 625 - components: - - type: Transform - pos: 6.5,7.5 - parent: 1 - - uid: 626 - components: - - type: Transform - pos: -3.5,4.5 - parent: 1 - - uid: 627 - components: - - type: Transform - pos: 5.5,6.5 - parent: 1 - - uid: 628 - components: - - type: Transform - pos: 10.5,7.5 - parent: 1 - - uid: 629 - components: - - type: Transform - pos: 10.5,6.5 - parent: 1 - - uid: 630 - components: - - type: Transform - pos: 10.5,5.5 - parent: 1 - - uid: 631 - components: - - type: Transform - pos: 10.5,4.5 - parent: 1 - - uid: 632 - components: - - type: Transform - pos: 10.5,3.5 - parent: 1 - - uid: 633 - components: - - type: Transform - pos: -2.5,4.5 - parent: 1 - - uid: 634 - components: - - type: Transform - pos: 9.5,7.5 - parent: 1 - - uid: 635 - components: - - type: Transform - pos: 5.5,4.5 - parent: 1 - - uid: 636 - components: - - type: Transform - pos: 8.5,7.5 - parent: 1 - - uid: 637 - components: - - type: Transform - pos: 5.5,5.5 - parent: 1 - - uid: 638 - components: - - type: Transform - pos: -4.5,4.5 - parent: 1 - - uid: 639 - components: - - type: Transform - pos: -5.5,4.5 - parent: 1 - - uid: 640 - components: - - type: Transform - pos: -6.5,4.5 - parent: 1 - - uid: 648 - components: - - type: Transform - pos: -8.5,9.5 - parent: 1 - - uid: 649 - components: - - type: Transform - pos: -9.5,9.5 - parent: 1 - - uid: 650 - components: - - type: Transform - pos: -8.5,8.5 - parent: 1 - - uid: 651 - components: - - type: Transform - pos: -8.5,7.5 - parent: 1 - - uid: 653 - components: - - type: Transform - pos: -8.5,4.5 - parent: 1 - - uid: 656 - components: - - type: Transform - pos: -1.5,4.5 - parent: 1 - - uid: 657 - components: - - type: Transform - pos: -0.5,4.5 - parent: 1 - - uid: 658 - components: - - type: Transform - pos: 0.5,4.5 - parent: 1 - - uid: 659 - components: - - type: Transform - pos: 0.5,4.5 - parent: 1 - - uid: 660 - components: - - type: Transform - pos: 0.5,3.5 - parent: 1 - - uid: 661 - components: - - type: Transform - pos: 0.5,2.5 - parent: 1 - - uid: 662 - components: - - type: Transform - pos: -0.5,2.5 - parent: 1 - - uid: 663 - components: - - type: Transform - pos: -0.5,1.5 - parent: 1 - - uid: 664 - components: - - type: Transform - pos: -0.5,0.5 - parent: 1 - - uid: 665 - components: - - type: Transform - pos: 1.5,2.5 - parent: 1 - - uid: 666 - components: - - type: Transform - pos: 1.5,1.5 - parent: 1 - - uid: 667 - components: - - type: Transform - pos: 1.5,0.5 - parent: 1 - - uid: 668 - components: - - type: Transform - pos: -0.5,5.5 - parent: 1 - - uid: 669 - components: - - type: Transform - pos: -0.5,6.5 - parent: 1 - - uid: 670 - components: - - type: Transform - pos: -0.5,7.5 - parent: 1 - - uid: 671 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1 - - uid: 771 - components: - - type: Transform - pos: -7.5,4.5 - parent: 1 - - uid: 826 - components: - - type: Transform - pos: 9.5,16.5 - parent: 1 - - uid: 827 - components: - - type: Transform - pos: -8.5,24.5 - parent: 1 - - uid: 834 - components: - - type: Transform - pos: -4.5,8.5 - parent: 1 - - uid: 985 - components: - - type: Transform - pos: -8.5,16.5 - parent: 1 - - uid: 986 - components: - - type: Transform - pos: -7.5,16.5 - parent: 1 - - uid: 987 - components: - - type: Transform - pos: -7.5,15.5 - parent: 1 - - uid: 988 - components: - - type: Transform - pos: -7.5,14.5 - parent: 1 - - uid: 989 - components: - - type: Transform - pos: 8.5,15.5 - parent: 1 - - uid: 990 - components: - - type: Transform - pos: 8.5,14.5 - parent: 1 - - uid: 991 - components: - - type: Transform - pos: 5.5,3.5 - parent: 1 - - uid: 992 - components: - - type: Transform - pos: 9.5,3.5 - parent: 1 - - uid: 993 - components: - - type: Transform - pos: 8.5,3.5 - parent: 1 - - uid: 994 - components: - - type: Transform - pos: 7.5,3.5 - parent: 1 - - uid: 995 - components: - - type: Transform - pos: 6.5,3.5 - parent: 1 - - uid: 1030 - components: - - type: Transform - pos: -3.5,7.5 - parent: 1 - - uid: 1034 - components: - - type: Transform - pos: -3.5,6.5 - parent: 1 - - proto: CableHV - entities: - - uid: 48 - components: - - type: Transform - pos: 9.5,8.5 - parent: 1 - - uid: 258 - components: - - type: Transform - pos: 10.5,8.5 - parent: 1 - - uid: 283 - components: - - type: Transform - pos: 9.5,7.5 - parent: 1 - - uid: 284 - components: - - type: Transform - pos: 7.5,6.5 - parent: 1 - - uid: 285 - components: - - type: Transform - pos: 8.5,6.5 - parent: 1 - - uid: 286 - components: - - type: Transform - pos: 9.5,6.5 - parent: 1 - - uid: 289 - components: - - type: Transform - pos: 10.5,9.5 - parent: 1 - - uid: 290 - components: - - type: Transform - pos: 10.5,7.5 - parent: 1 - - uid: 1066 - components: - - type: Transform - pos: 9.5,9.5 - parent: 1 - - proto: CableMV - entities: - - uid: 514 - components: - - type: Transform - pos: 10.5,9.5 - parent: 1 - - uid: 515 - components: - - type: Transform - pos: 9.5,9.5 - parent: 1 - - uid: 516 - components: - - type: Transform - pos: 8.5,9.5 - parent: 1 - - uid: 517 - components: - - type: Transform - pos: 7.5,9.5 - parent: 1 - - uid: 518 - components: - - type: Transform - pos: 6.5,9.5 - parent: 1 - - uid: 519 - components: - - type: Transform - pos: 5.5,9.5 - parent: 1 - - uid: 520 - components: - - type: Transform - pos: 4.5,9.5 - parent: 1 - - uid: 521 - components: - - type: Transform - pos: 3.5,9.5 - parent: 1 - - uid: 522 - components: - - type: Transform - pos: 2.5,9.5 - parent: 1 - - uid: 523 - components: - - type: Transform - pos: 1.5,9.5 - parent: 1 - - uid: 524 - components: - - type: Transform - pos: 0.5,9.5 - parent: 1 - - uid: 525 - components: - - type: Transform - pos: -0.5,9.5 - parent: 1 - - uid: 526 - components: - - type: Transform - pos: -0.5,9.5 - parent: 1 - - uid: 527 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1 - - uid: 528 - components: - - type: Transform - pos: -0.5,7.5 - parent: 1 - - uid: 529 - components: - - type: Transform - pos: -0.5,6.5 - parent: 1 - - uid: 530 - components: - - type: Transform - pos: -0.5,5.5 - parent: 1 - - uid: 531 - components: - - type: Transform - pos: -0.5,4.5 - parent: 1 - - uid: 532 - components: - - type: Transform - pos: -0.5,4.5 - parent: 1 - - uid: 533 - components: - - type: Transform - pos: -1.5,4.5 - parent: 1 - - uid: 534 - components: - - type: Transform - pos: -2.5,4.5 - parent: 1 - - uid: 535 - components: - - type: Transform - pos: -0.5,9.5 - parent: 1 - - uid: 536 - components: - - type: Transform - pos: -0.5,10.5 - parent: 1 - - uid: 537 - components: - - type: Transform - pos: -0.5,11.5 - parent: 1 - - uid: 538 - components: - - type: Transform - pos: -0.5,12.5 - parent: 1 - - uid: 539 - components: - - type: Transform - pos: -0.5,13.5 - parent: 1 - - uid: 540 - components: - - type: Transform - pos: -0.5,14.5 - parent: 1 - - uid: 541 - components: - - type: Transform - pos: -0.5,15.5 - parent: 1 - - uid: 542 - components: - - type: Transform - pos: -0.5,16.5 - parent: 1 - - uid: 544 - components: - - type: Transform - pos: 0.5,16.5 - parent: 1 - - uid: 545 - components: - - type: Transform - pos: 1.5,16.5 - parent: 1 - - uid: 546 - components: - - type: Transform - pos: 2.5,16.5 - parent: 1 - - uid: 548 - components: - - type: Transform - pos: 3.5,16.5 - parent: 1 - - uid: 549 - components: - - type: Transform - pos: 3.5,17.5 - parent: 1 - - uid: 550 - components: - - type: Transform - pos: 3.5,18.5 - parent: 1 - - uid: 552 - components: - - type: Transform - pos: -1.5,16.5 - parent: 1 - - uid: 553 - components: - - type: Transform - pos: -2.5,16.5 - parent: 1 - - uid: 554 - components: - - type: Transform - pos: -3.5,16.5 - parent: 1 - - uid: 555 - components: - - type: Transform - pos: -4.5,16.5 - parent: 1 - - uid: 557 - components: - - type: Transform - pos: -4.5,17.5 - parent: 1 - - uid: 558 - components: - - type: Transform - pos: -4.5,18.5 - parent: 1 - - uid: 559 - components: - - type: Transform - pos: -4.5,19.5 - parent: 1 - - uid: 560 - components: - - type: Transform - pos: -4.5,20.5 - parent: 1 - - uid: 612 - components: - - type: Transform - pos: 7.5,8.5 - parent: 1 - - proto: CableTerminal - entities: - - uid: 287 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,7.5 - parent: 1 - - uid: 288 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,7.5 - parent: 1 - - proto: CargoPallet - entities: - - uid: 82 - components: - - type: Transform - pos: 8.5,9.5 - parent: 1 - - uid: 473 - components: - - type: Transform - pos: 9.5,9.5 - parent: 1 - - proto: CarpetBlack - entities: - - uid: 242 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,22.5 - parent: 1 - - uid: 246 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,23.5 - parent: 1 - - uid: 253 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,23.5 - parent: 1 - - uid: 254 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,22.5 - parent: 1 - - uid: 255 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,23.5 - parent: 1 - - uid: 275 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,22.5 - parent: 1 - - uid: 276 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,22.5 - parent: 1 - - uid: 278 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,23.5 - parent: 1 - - uid: 281 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,23.5 - parent: 1 - - uid: 313 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,22.5 - parent: 1 - - uid: 964 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,13.5 - parent: 1 - - uid: 965 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,12.5 - parent: 1 - - uid: 966 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,11.5 - parent: 1 - - uid: 967 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,10.5 - parent: 1 - - proto: CarpetSBlue - entities: - - uid: 646 - components: - - type: Transform - pos: 0.5,9.5 - parent: 1 - - proto: Chair - entities: - - uid: 981 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,15.5 - parent: 1 - - proto: ChairOfficeDark - entities: - - uid: 1042 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,6.5 - parent: 1 - - uid: 1043 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 1 - - proto: ChairPilotSeat - entities: - - uid: 329 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,20.5 - parent: 1 - - proto: ClosetJanitorFilled - entities: - - uid: 1015 - components: - - type: Transform - pos: 5.5,15.5 - parent: 1 - - proto: ClosetL3ScienceFilled - entities: - - uid: 435 - components: - - type: Transform - pos: 3.5,6.5 - parent: 1 - - proto: ClosetRadiationSuitFilled - entities: - - uid: 459 - components: - - type: Transform - pos: 2.5,6.5 - parent: 1 - - proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 1017 - components: - - type: Transform - pos: -6.5,25.5 - parent: 1 - - proto: ClosetWallFireFilledRandom - entities: - - uid: 1013 - components: - - type: Transform - pos: 5.5,20.5 - parent: 1 - - proto: ClosetWallMaintenanceFilledRandom - entities: - - uid: 1009 - components: - - type: Transform - pos: -5.5,25.5 - parent: 1 - - uid: 1010 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,7.5 - parent: 1 - - proto: ClothingHeadHatBeretEngineering - entities: - - uid: 1018 - components: - - type: Transform - pos: -8.281233,24.312689 - parent: 1 - - proto: ClothingHeadHatBeretRND - entities: - - uid: 963 - components: - - type: Transform - pos: -6.0664554,4.706133 - parent: 1 - - proto: ComputerPowerMonitoring - entities: - - uid: 436 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,3.5 - parent: 1 - - proto: ComputerRadar - entities: - - uid: 327 - components: - - type: Transform - pos: 1.5,21.5 - parent: 1 - - proto: ComputerShuttle - entities: - - uid: 326 - components: - - type: Transform - pos: 0.5,21.5 - parent: 1 - - proto: ComputerStationRecords - entities: - - uid: 328 - components: - - type: Transform - pos: -0.5,21.5 - parent: 1 - - proto: ComputerTabletopResearchAndDevelopment - entities: - - uid: 1037 - components: - - type: Transform - pos: -5.5,7.5 - parent: 1 - - proto: CrateArtifactContainer - entities: - - uid: 403 - components: - - type: Transform - pos: 5.5,4.5 - parent: 1 - - type: Lock - locked: False - - uid: 404 - components: - - type: Transform - pos: 4.5,4.5 - parent: 1 - - type: Lock - locked: False - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14923 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - proto: CrateEmptySpawner - entities: - - uid: 978 - components: - - type: Transform - pos: -8.5,22.5 - parent: 1 - - proto: CrateTrashCart - entities: - - uid: 915 - components: - - type: Transform - pos: -4.5,13.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 - - LowImpassable - layer: - - BulletImpassable - - Opaque - density: 50 - hard: True - restitution: 0 - friction: 0.4 - - type: EntityStorage - open: True - removedMasks: 20 - - type: PlaceableSurface - isPlaceable: True - - proto: DefibrillatorCabinetFilled - entities: - - uid: 414 - components: - - type: Transform - pos: -1.5,7.5 - parent: 1 - - proto: DisposalBend - entities: - - uid: 803 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 1 - - uid: 939 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,12.5 - parent: 1 - - proto: DisposalJunction - entities: - - uid: 945 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,8.5 - parent: 1 - - proto: DisposalPipe - entities: - - uid: 645 - components: - - type: Transform - pos: -0.5,5.5 - parent: 1 - - uid: 804 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,3.5 - parent: 1 - - uid: 837 - components: - - type: Transform - pos: -0.5,4.5 - parent: 1 - - uid: 923 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,15.5 - parent: 1 - - uid: 924 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,15.5 - parent: 1 - - uid: 925 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,15.5 - parent: 1 - - uid: 926 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,15.5 - parent: 1 - - uid: 929 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,15.5 - parent: 1 - - uid: 930 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,15.5 - parent: 1 - - uid: 931 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,15.5 - parent: 1 - - uid: 932 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,15.5 - parent: 1 - - uid: 933 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,15.5 - parent: 1 - - uid: 934 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,15.5 - parent: 1 - - uid: 935 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,12.5 - parent: 1 - - uid: 936 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,12.5 - parent: 1 - - uid: 937 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,12.5 - parent: 1 - - uid: 940 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,14.5 - parent: 1 - - uid: 941 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,13.5 - parent: 1 - - uid: 942 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,11.5 - parent: 1 - - uid: 943 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,10.5 - parent: 1 - - uid: 944 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,9.5 - parent: 1 - - uid: 946 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,7.5 - parent: 1 - - uid: 947 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,6.5 - parent: 1 - - uid: 949 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,8.5 - parent: 1 - - uid: 950 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,8.5 - parent: 1 - - uid: 951 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,8.5 - parent: 1 - - uid: 952 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,8.5 - parent: 1 - - uid: 953 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,8.5 - parent: 1 - - proto: DisposalTrunk - entities: - - uid: 802 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,2.5 - parent: 1 - - uid: 914 - components: - - type: Transform - pos: -4.5,13.5 - parent: 1 - - uid: 922 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,15.5 - parent: 1 - - uid: 928 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,15.5 - parent: 1 - - uid: 948 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,8.5 - parent: 1 - - proto: DisposalUnit - entities: - - uid: 801 - components: - - type: Transform - pos: -1.5,2.5 - parent: 1 - - uid: 918 - components: - - type: Transform - pos: -5.5,15.5 - parent: 1 - - uid: 919 - components: - - type: Transform - pos: 6.5,15.5 - parent: 1 - - uid: 920 - components: - - type: Transform - pos: 5.5,8.5 - parent: 1 - - proto: DisposalYJunction - entities: - - uid: 927 - components: - - type: Transform - pos: -0.5,15.5 - parent: 1 - - uid: 938 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,12.5 - parent: 1 - - proto: DrinkGlass - entities: - - uid: 480 - components: - - type: Transform - pos: 6.407689,11.024149 - parent: 1 - - uid: 481 - components: - - type: Transform - pos: 6.687379,11.111562 - parent: 1 - - uid: 482 - components: - - type: Transform - pos: 6.8447046,10.954219 - parent: 1 - - uid: 483 - components: - - type: Transform - pos: 6.565015,10.936736 - parent: 1 - - proto: DrinkVodkaBottleFull - entities: - - uid: 487 - components: - - type: Transform - pos: 6.753511,10.66121 - parent: 1 - - proto: Dropper - entities: - - uid: 846 - components: - - type: Transform - pos: -6.4767566,4.780698 - parent: 1 - - proto: EmergencyLight - entities: - - uid: 839 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,4.5 - parent: 1 - - uid: 840 - components: - - type: Transform - pos: 1.5,2.5 - parent: 1 - - uid: 841 - components: - - type: Transform - pos: -2.5,17.5 - parent: 1 - - uid: 842 - components: - - type: Transform - pos: 8.5,20.5 - parent: 1 - - uid: 843 - components: - - type: Transform - pos: -5.5,24.5 - parent: 1 - - proto: ExtinguisherCabinetFilled - entities: - - uid: 829 - components: - - type: Transform - pos: -1.5,18.5 - parent: 1 - - uid: 830 - components: - - type: Transform - pos: -2.5,7.5 - parent: 1 - - uid: 831 - components: - - type: Transform - pos: 11.5,6.5 - parent: 1 - - proto: FaxMachineShip - entities: - - uid: 330 - components: - - type: Transform - pos: -1.5,20.5 - parent: 1 - - proto: FireAlarm - entities: - - uid: 856 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,14.5 - parent: 1 - - type: DeviceList - devices: - - 851 - - 852 - - 853 - - 848 - - 828 - - 847 - - type: AtmosDevice - joinedGrid: 1 - - uid: 1051 - components: - - type: Transform - pos: -4.5,11.5 - parent: 1 - - type: DeviceList - devices: - - 1050 - - 844 - - 845 - - type: AtmosDevice - joinedGrid: 1 - - uid: 1052 - components: - - type: Transform - pos: -7.5,17.5 - parent: 1 - - type: DeviceList - devices: - - 828 - - 847 - - 854 - - type: AtmosDevice - joinedGrid: 1 - - uid: 1053 - components: - - type: Transform - pos: 7.5,20.5 - parent: 1 - - type: DeviceList - devices: - - 855 - - 848 - - 849 - - type: AtmosDevice - joinedGrid: 1 - - proto: FirelockGlass - entities: - - uid: 828 - components: - - type: Transform - pos: -3.5,17.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 856 - - 1052 - - uid: 844 - components: - - type: Transform - pos: -2.5,6.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 838 - - 1051 - - uid: 845 - components: - - type: Transform - pos: -2.5,5.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 838 - - 1051 - - uid: 847 - components: - - type: Transform - pos: -3.5,16.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 856 - - 1052 - - uid: 848 - components: - - type: Transform - pos: 4.5,17.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 856 - - 1053 - - uid: 849 - components: - - type: Transform - pos: 4.5,16.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 1053 - - uid: 850 - components: - - type: Transform - pos: 0.5,18.5 - parent: 1 - - uid: 851 - components: - - type: Transform - pos: -0.5,14.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 856 - - uid: 852 - components: - - type: Transform - pos: 2.5,14.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 856 - - uid: 853 - components: - - type: Transform - pos: 3.5,14.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 856 - - uid: 854 - components: - - type: Transform - pos: -7.5,21.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 1052 - - uid: 855 - components: - - type: Transform - pos: 6.5,20.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 1053 - - uid: 1050 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,6.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 838 - - 1051 - - proto: GasPassiveVent - entities: - - uid: 351 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,9.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 352 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,10.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 716 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 717 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,14.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - proto: GasPipeBend - entities: - - uid: 619 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 699 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 712 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 749 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 750 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 795 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 807 - components: - - type: Transform - pos: -1.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 813 - components: - - type: Transform - pos: 5.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 955 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 956 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - proto: GasPipeFourway - entities: - - uid: 673 - components: - - type: Transform - pos: -0.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 957 - components: - - type: Transform - pos: -3.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - proto: GasPipeStraight - entities: - - uid: 18 - components: - - type: Transform - pos: -7.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 19 - components: - - type: Transform - pos: 8.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 346 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 347 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 355 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,10.5 - parent: 1 - - uid: 356 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,10.5 - parent: 1 - - uid: 357 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,10.5 - parent: 1 - - uid: 358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,9.5 - parent: 1 - - uid: 359 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,9.5 - parent: 1 - - uid: 360 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,9.5 - parent: 1 - - uid: 391 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 675 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 676 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 677 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 678 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 680 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 681 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 682 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 683 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 684 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 685 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 687 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 688 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 689 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 693 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,14.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 695 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 696 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 697 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 700 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 701 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 702 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 703 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 704 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 708 - components: - - type: Transform - pos: 6.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 709 - components: - - type: Transform - pos: 6.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 710 - components: - - type: Transform - pos: 6.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 711 - components: - - type: Transform - pos: 6.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 713 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 714 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 715 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 720 - components: - - type: Transform - pos: 8.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 721 - components: - - type: Transform - pos: 8.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 722 - components: - - type: Transform - pos: 8.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 723 - components: - - type: Transform - pos: 8.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 725 - components: - - type: Transform - pos: -7.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 726 - components: - - type: Transform - pos: 8.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 732 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 735 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 736 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 737 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 738 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 740 - components: - - type: Transform - pos: 3.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 741 - components: - - type: Transform - pos: 3.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 743 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,12.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 744 - components: - - type: Transform - pos: 3.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 745 - components: - - type: Transform - pos: 3.5,14.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 746 - components: - - type: Transform - pos: 3.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 748 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 751 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 755 - components: - - type: Transform - pos: 4.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 756 - components: - - type: Transform - pos: 3.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 757 - components: - - type: Transform - pos: 3.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 758 - components: - - type: Transform - pos: 3.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 759 - components: - - type: Transform - pos: 4.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 760 - components: - - type: Transform - pos: -0.5,14.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 761 - components: - - type: Transform - pos: -0.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 763 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 765 - components: - - type: Transform - pos: -0.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 766 - components: - - type: Transform - pos: -0.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 767 - components: - - type: Transform - pos: -0.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 772 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 773 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 774 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 777 - components: - - type: Transform - pos: -7.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 778 - components: - - type: Transform - pos: -7.5,21.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 779 - components: - - type: Transform - pos: -7.5,20.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 780 - components: - - type: Transform - pos: -7.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 782 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 783 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 785 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 786 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 787 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 788 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,14.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 789 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 790 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,12.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 791 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 792 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,11.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 793 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 794 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 797 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 798 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,7.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 799 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 805 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 806 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,5.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 958 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1036 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,4.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1054 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - proto: GasPipeTJunction - entities: - - uid: 674 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 679 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 686 - components: - - type: Transform - pos: 2.5,15.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 694 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,13.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 698 - components: - - type: Transform - pos: 4.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 707 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,19.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 727 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 728 - components: - - type: Transform - pos: 7.5,17.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 739 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,9.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 742 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,12.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 747 - components: - - type: Transform - pos: 3.5,16.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 762 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,12.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 764 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,10.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 768 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 781 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 784 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,18.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 796 - components: - - type: Transform - pos: -3.5,8.5 - parent: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 954 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,6.5 - parent: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - proto: GasPort - entities: - - uid: 353 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,10.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 354 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,9.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 509 - components: - - type: Transform - pos: -3.5,13.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - proto: GasPressurePump - entities: - - uid: 349 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 350 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,9.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 510 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,12.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - proto: GasVentPump - entities: - - uid: 389 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,6.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 838 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,15.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 835 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 655 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,16.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 835 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 672 - components: - - type: Transform - pos: -5.5,22.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 690 - components: - - type: Transform - pos: -0.5,19.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 692 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 705 - components: - - type: Transform - pos: 6.5,21.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 835 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 706 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,19.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 835 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,5.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 769 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,6.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 770 - components: - - type: Transform - pos: -4.5,7.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 838 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 809 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,10.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - uid: 814 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,12.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#0055CCFF' - - proto: GasVentScrubber - entities: - - uid: 392 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,4.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 838 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 719 - components: - - type: Transform - pos: 8.5,22.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 835 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 729 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,16.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 835 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 730 - components: - - type: Transform - pos: 1.5,19.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - uid: 733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,12.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 734 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,9.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 752 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,16.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 835 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 753 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,5.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 775 - components: - - type: Transform - pos: -7.5,22.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 776 - components: - - type: Transform - pos: -4.5,19.5 - parent: 1 - - type: DeviceNetwork - deviceLists: - - 835 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 800 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 808 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,4.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 1027 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,4.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - type: AtmosPipeColor - color: '#990000FF' - - proto: GravityGeneratorMini - entities: - - uid: 223 - components: - - type: Transform - pos: 9.5,10.5 - parent: 1 - - proto: Grille - entities: - - uid: 3 - components: - - type: Transform - pos: -2.5,21.5 - parent: 1 - - uid: 5 - components: - - type: Transform - pos: 1.5,22.5 - parent: 1 - - uid: 6 - components: - - type: Transform - pos: 0.5,22.5 - parent: 1 - - uid: 7 - components: - - type: Transform - pos: -0.5,22.5 - parent: 1 - - uid: 9 - components: - - type: Transform - pos: -1.5,22.5 - parent: 1 - - uid: 15 - components: - - type: Transform - pos: 3.5,21.5 - parent: 1 - - uid: 16 - components: - - type: Transform - pos: 2.5,22.5 - parent: 1 - - uid: 25 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,13.5 - parent: 1 - - uid: 26 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,13.5 - parent: 1 - - uid: 70 - components: - - type: Transform - pos: 8.5,15.5 - parent: 1 - - uid: 95 - components: - - type: Transform - pos: 9.5,15.5 - parent: 1 - - uid: 127 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,9.5 - parent: 1 - - uid: 152 - components: - - type: Transform - pos: -7.5,7.5 - parent: 1 - - uid: 155 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,9.5 - parent: 1 - - uid: 156 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,10.5 - parent: 1 - - uid: 163 - components: - - type: Transform - pos: -7.5,15.5 - parent: 1 - - uid: 164 - components: - - type: Transform - pos: 2.5,1.5 - parent: 1 - - uid: 176 - components: - - type: Transform - pos: -8.5,15.5 - parent: 1 - - uid: 180 - components: - - type: Transform - pos: 9.5,11.5 - parent: 1 - - uid: 181 - components: - - type: Transform - pos: 8.5,11.5 - parent: 1 - - uid: 208 - components: - - type: Transform - pos: -1.5,1.5 - parent: 1 - - uid: 211 - components: - - type: Transform - pos: 0.5,1.5 - parent: 1 - - uid: 303 - components: - - type: Transform - pos: 10.5,19.5 - parent: 1 - - uid: 305 - components: - - type: Transform - pos: -9.5,19.5 - parent: 1 - - uid: 338 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 1 - - uid: 340 - components: - - type: Transform - pos: -10.5,10.5 - parent: 1 - - uid: 486 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,21.5 - parent: 1 - - uid: 508 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 1 - - uid: 641 - components: - - type: Transform - pos: -7.5,5.5 - parent: 1 - - uid: 718 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,21.5 - parent: 1 - - uid: 959 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,7.5 - parent: 1 - - uid: 1039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,8.5 - parent: 1 - - proto: GunSafeShuttleCaptain - entities: - - uid: 409 - components: - - type: Transform - pos: 2.5,20.5 - parent: 1 - - proto: Gyroscope - entities: - - uid: 833 - components: - - type: Transform - pos: 9.5,6.5 - parent: 1 - - uid: 974 - components: - - type: Transform - pos: 9.5,9.5 - parent: 1 - - proto: HandLabeler - entities: - - uid: 652 - components: - - type: Transform - pos: -6.1410556,4.47001 - parent: 1 - - proto: HospitalCurtainsOpen - entities: - - uid: 274 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,24.5 - parent: 1 - - uid: 277 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,24.5 - parent: 1 - - uid: 280 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,24.5 - parent: 1 - - uid: 325 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,24.5 - parent: 1 - - uid: 434 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,16.5 - parent: 1 - - uid: 654 - components: - - type: Transform - pos: 0.5,8.5 - parent: 1 - - proto: IntercomCommon - entities: - - uid: 1026 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,19.5 - parent: 1 - - uid: 1028 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,11.5 - parent: 1 - - proto: IntercomScience - entities: - - uid: 961 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,8.5 - parent: 1 - - proto: JanitorialTrolley - entities: - - uid: 982 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,16.5 - parent: 1 - - proto: KitchenReagentGrinder - entities: - - uid: 916 - components: - - type: Transform - pos: -5.5,4.5 - parent: 1 - - proto: Lamp - entities: - - uid: 822 - components: - - type: Transform - pos: -1.5009942,19.849262 - parent: 1 - - proto: LampGold - entities: - - uid: 980 - components: - - type: Transform - pos: -2.6181068,15.859153 - parent: 1 - - proto: LargeBeaker - entities: - - uid: 960 - components: - - type: Transform - pos: -6.6508236,4.5818577 - parent: 1 - - proto: LockerCaptainFilled - entities: - - uid: 406 - components: - - type: Transform - pos: 2.5,19.5 - parent: 1 - - proto: LockerEngineerFilled - entities: - - uid: 296 - components: - - type: Transform - pos: 7.238914,7.4961095 - parent: 1 - - proto: MachineArtifactCrusher - entities: - - uid: 1035 - components: - - type: Transform - pos: -8.5,4.5 - parent: 1 - - proto: MiningDrill - entities: - - uid: 464 - components: - - type: Transform - pos: -8.629296,24.431751 - parent: 1 - - uid: 465 - components: - - type: Transform - pos: -8.437011,24.624058 - parent: 1 - - proto: OreBag - entities: - - uid: 462 - components: - - type: Transform - pos: -6.5665894,24.484198 - parent: 1 - - uid: 463 - components: - - type: Transform - pos: -6.4267445,24.624058 - parent: 1 - - proto: OreProcessor - entities: - - uid: 426 - components: - - type: Transform - pos: -7.5,24.5 - parent: 1 - - proto: PaintingFireaxeCabinet - entities: - - uid: 1012 - components: - - type: Transform - pos: -4.5,3.5 - parent: 1 - - proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 112 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,10.5 - parent: 1 - - uid: 342 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,10.5 - parent: 1 - - uid: 343 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,9.5 - parent: 1 - - proto: PosterContrabandVoteWeh - entities: - - uid: 314 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,18.5 - parent: 1 - - proto: PosterLegitScience - entities: - - uid: 467 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1 - - proto: PottedPlantRandom - entities: - - uid: 40 - components: - - type: Transform - pos: -8.5,19.5 - parent: 1 - - uid: 812 - components: - - type: Transform - pos: 1.5,13.5 - parent: 1 - - uid: 968 - components: - - type: Transform - pos: 7.5,17.5 - parent: 1 - - uid: 969 - components: - - type: Transform - pos: -4.5,15.5 - parent: 1 - - uid: 971 - components: - - type: Transform - pos: 0.5,6.5 - parent: 1 - - uid: 973 - components: - - type: Transform - pos: 2.5,2.5 - parent: 1 - - proto: PottedPlantRandomPlastic - entities: - - uid: 1011 - components: - - type: Transform - pos: 4.5,19.5 - parent: 1 - - proto: PowerCellRecharger - entities: - - uid: 1008 - components: - - type: Transform - pos: -4.5,18.5 - parent: 1 - - proto: Poweredlight - entities: - - uid: 488 - components: - - type: Transform - pos: 4.5,13.5 - parent: 1 - - uid: 489 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,10.5 - parent: 1 - - uid: 490 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,10.5 - parent: 1 - - uid: 491 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,4.5 - parent: 1 - - uid: 492 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,7.5 - parent: 1 - - uid: 493 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,5.5 - parent: 1 - - uid: 494 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,7.5 - parent: 1 - - uid: 495 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,22.5 - parent: 1 - - uid: 496 - components: - - type: Transform - pos: 7.5,19.5 - parent: 1 - - uid: 497 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,19.5 - parent: 1 - - uid: 498 - components: - - type: Transform - pos: -0.5,17.5 - parent: 1 - - uid: 499 - components: - - type: Transform - pos: -6.5,20.5 - parent: 1 - - uid: 500 - components: - - type: Transform - pos: -8.5,24.5 - parent: 1 - - uid: 501 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,16.5 - parent: 1 - - uid: 502 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,16.5 - parent: 1 - - uid: 503 - components: - - type: Transform - pos: -2.5,13.5 - parent: 1 - - uid: 504 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,5.5 - parent: 1 - - proto: PoweredSmallLight - entities: - - uid: 823 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,5.5 - parent: 1 - - uid: 824 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,5.5 - parent: 1 - - uid: 825 - components: - - type: Transform - pos: 9.5,16.5 - parent: 1 - - proto: Protolathe - entities: - - uid: 1044 - components: - - type: Transform - pos: -3.5,4.5 - parent: 1 - - proto: Rack - entities: - - uid: 61 - components: - - type: Transform - pos: 8.5,6.5 - parent: 1 - - uid: 460 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,24.5 - parent: 1 - - uid: 461 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,24.5 - parent: 1 - - proto: RagItem - entities: - - uid: 484 - components: - - type: Transform - pos: 4.4323835,11.985687 - parent: 1 - - proto: Railing - entities: - - uid: 816 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,4.5 - parent: 1 - - uid: 819 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,4.5 - parent: 1 - - proto: RailingCorner - entities: - - uid: 817 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,5.5 - parent: 1 - - uid: 818 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,3.5 - parent: 1 - - uid: 820 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,5.5 - parent: 1 - - uid: 821 - components: - - type: Transform - pos: 12.5,3.5 - parent: 1 - - proto: RandomDrinkGlass - entities: - - uid: 17 - components: - - type: Transform - pos: 4.5,12.5 - parent: 1 - - proto: RandomPainting - entities: - - uid: 909 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,25.5 - parent: 1 - - uid: 910 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,23.5 - parent: 1 - - uid: 912 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,12.5 - parent: 1 - - proto: RandomPosterAny - entities: - - uid: 984 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,21.5 - parent: 1 - - uid: 1002 - components: - - type: Transform - pos: -3.5,20.5 - parent: 1 - - uid: 1003 - components: - - type: Transform - pos: 0.5,12.5 - parent: 1 - - uid: 1005 - components: - - type: Transform - pos: 3.5,7.5 - parent: 1 - - uid: 1006 - components: - - type: Transform - pos: 1.5,3.5 - parent: 1 - - uid: 1007 - components: - - type: Transform - pos: -2.5,9.5 - parent: 1 - - uid: 1048 - components: - - type: Transform - pos: -9.5,2.5 - parent: 1 - - proto: ReinforcedPlasmaWindow - entities: - - uid: 110 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,10.5 - parent: 1 - - uid: 150 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,10.5 - parent: 1 - - uid: 153 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,9.5 - parent: 1 - - uid: 244 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,7.5 - parent: 1 - - uid: 1029 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,8.5 - parent: 1 - - proto: ReinforcedWindow - entities: - - uid: 213 - components: - - type: Transform - pos: 0.5,1.5 - parent: 1 - - uid: 300 - components: - - type: Transform - pos: -1.5,1.5 - parent: 1 - - uid: 301 - components: - - type: Transform - pos: 2.5,1.5 - parent: 1 - - proto: ResearchAndDevelopmentServer - entities: - - uid: 1004 - components: - - type: Transform - pos: -2.5,13.5 - parent: 1 - - proto: ShuttleWindow - entities: - - uid: 8 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,22.5 - parent: 1 - - uid: 12 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,22.5 - parent: 1 - - uid: 13 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,22.5 - parent: 1 - - uid: 14 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,22.5 - parent: 1 - - uid: 20 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,22.5 - parent: 1 - - uid: 21 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,15.5 - parent: 1 - - uid: 22 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,15.5 - parent: 1 - - uid: 23 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,11.5 - parent: 1 - - uid: 30 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,10.5 - parent: 1 - - uid: 31 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,15.5 - parent: 1 - - uid: 42 - components: - - type: Transform - pos: -9.5,19.5 - parent: 1 - - uid: 76 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,9.5 - parent: 1 - - uid: 94 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,13.5 - parent: 1 - - uid: 184 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,13.5 - parent: 1 - - uid: 186 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,15.5 - parent: 1 - - uid: 239 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,11.5 - parent: 1 - - uid: 251 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,22.5 - parent: 1 - - uid: 319 - components: - - type: Transform - pos: 10.5,19.5 - parent: 1 - - uid: 371 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,21.5 - parent: 1 - - uid: 644 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,4.5 - parent: 1 - - uid: 724 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,21.5 - parent: 1 - - uid: 907 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,21.5 - parent: 1 - - uid: 908 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,21.5 - parent: 1 - - uid: 962 - components: - - type: Transform - pos: -7.5,5.5 - parent: 1 - - uid: 1024 - components: - - type: Transform - pos: -7.5,7.5 - parent: 1 - - proto: SignalButton - entities: - - uid: 64 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,21.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 421: - - Pressed: Toggle - 420: - - Pressed: Toggle - 419: - - Pressed: Toggle - 424: - - Pressed: Toggle - 423: - - Pressed: Toggle - 422: - - Pressed: Toggle - - uid: 1049 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,6.5 - parent: 1 - - type: DeviceLinkSource - linkedPorts: - 151: - - Pressed: Toggle - - proto: SignAnomaly - entities: - - uid: 417 - components: - - type: Transform - pos: -6.5,8.5 - parent: 1 - - proto: SignBar - entities: - - uid: 551 - components: - - type: Transform - pos: 1.5,14.5 - parent: 1 - - proto: SignDirectionalBar - entities: - - uid: 469 - components: - - type: Transform - pos: 1.5386099,18.472553 - parent: 1 - - proto: SignDirectionalSalvage - entities: - - uid: 466 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5064895,18.505243 - parent: 1 - - proto: SignDirectionalSci - entities: - - uid: 468 - components: - - type: Transform - pos: -0.5010574,18.305386 - parent: 1 - - proto: SignJanitor - entities: - - uid: 1014 - components: - - type: Transform - pos: 7.5,15.5 - parent: 1 - - proto: SignRND - entities: - - uid: 415 - components: - - type: Transform - pos: 0.5,11.5 - parent: 1 - - proto: SignScience - entities: - - uid: 416 - components: - - type: Transform - pos: -1.5,11.5 - parent: 1 - - proto: SignSecureMed - entities: - - uid: 1019 - components: - - type: Transform - pos: -7.5,9.5 - parent: 1 - - proto: NFSignDock - entities: - - uid: 306 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,21.5 - parent: 1 - - uid: 307 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,17.5 - parent: 1 - - uid: 308 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,21.5 - parent: 1 - - uid: 309 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,17.5 - parent: 1 - - uid: 310 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,2.5 - parent: 1 - - uid: 311 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,2.5 - parent: 1 - - proto: SignShock - entities: - - uid: 471 - components: - - type: Transform - pos: 10.5,2.5 - parent: 1 - - uid: 472 - components: - - type: Transform - pos: 11.5,7.5 - parent: 1 - - proto: SignSmoking - entities: - - uid: 470 - components: - - type: Transform - pos: 10.5,10.5 - parent: 1 - - uid: 1021 - components: - - type: Transform - pos: -3.5,11.5 - parent: 1 - - proto: SignSpace - entities: - - uid: 241 - components: - - type: Transform - pos: 11.5,5.5 - parent: 1 - - uid: 257 - components: - - type: Transform - pos: -10.5,3.5 - parent: 1 - - uid: 292 - components: - - type: Transform - pos: -10.5,5.5 - parent: 1 - - uid: 293 - components: - - type: Transform - pos: 11.5,3.5 - parent: 1 - - uid: 1032 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,8.5 - parent: 1 - - proto: Sink - entities: - - uid: 430 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,9.5 - parent: 1 - - proto: SMESBasic - entities: - - uid: 57 - components: - - type: Transform - pos: 9.5,8.5 - parent: 1 - - uid: 234 - components: - - type: Transform - pos: 10.5,8.5 - parent: 1 - - proto: Soap - entities: - - uid: 976 - components: - - type: Transform - pos: 0.50327635,8.438866 - parent: 1 - - proto: SpawnPointLatejoin - entities: - - uid: 588 - components: - - type: Transform - pos: 3.5,9.5 - parent: 1 - - proto: StoolBar - entities: - - uid: 547 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,12.5 - parent: 1 - - uid: 586 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,10.5 - parent: 1 - - uid: 592 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,11.5 - parent: 1 - - uid: 599 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,13.5 - parent: 1 - - proto: StorageCanister - entities: - - uid: 393 - components: - - type: Transform - pos: -3.5,8.5 - parent: 1 - - type: AtmosDevice - joinedGrid: 1 - - proto: SubstationBasic - entities: - - uid: 44 - components: - - type: Transform - pos: 10.5,9.5 - parent: 1 - - proto: SuitStorageBasic - entities: - - uid: 407 - components: - - type: Transform - pos: 3.5,4.5 - parent: 1 - - proto: SuitStorageEVA - entities: - - uid: 317 - components: - - type: Transform - pos: 2.5,0.5 - parent: 1 - - proto: SuitStorageRD - entities: - - uid: 405 - components: - - type: Transform - pos: 2.5,4.5 - parent: 1 - - proto: SuitStorageSalv - entities: - - uid: 432 - components: - - type: Transform - pos: -5.5,20.5 - parent: 1 - - uid: 1000 - components: - - type: Transform - pos: -6.5,20.5 - parent: 1 - - proto: SuitStorageWallmountEVAEmergency - entities: - - uid: 320 - components: - - type: Transform - pos: -10.5,21.5 - parent: 1 - - type: Physics - canCollide: False - - uid: 321 - components: - - type: Transform - pos: 11.5,21.5 - parent: 1 - - type: Physics - canCollide: False - - uid: 832 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 1 - - type: Physics - canCollide: False - - proto: TableGlass - entities: - - uid: 322 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,20.5 - parent: 1 - - uid: 324 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,19.5 - parent: 1 - - uid: 917 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,4.5 - parent: 1 - - uid: 1047 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,4.5 - parent: 1 - - proto: TableReinforced - entities: - - uid: 221 - components: - - type: Transform - pos: 8.5,10.5 - parent: 1 - - uid: 396 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,7.5 - parent: 1 - - uid: 979 - components: - - type: Transform - pos: -2.5,15.5 - parent: 1 - - uid: 1001 - components: - - type: Transform - pos: -4.5,18.5 - parent: 1 - - uid: 1020 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,7.5 - parent: 1 - - proto: TableWoodReinforced - entities: - - uid: 456 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,11.5 - parent: 1 - - uid: 474 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,13.5 - parent: 1 - - uid: 475 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,12.5 - parent: 1 - - uid: 476 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,10.5 - parent: 1 - - uid: 477 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,10.5 - parent: 1 - - uid: 478 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,11.5 - parent: 1 - - proto: Thruster - entities: - - uid: 32 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,1.5 - parent: 1 - - uid: 34 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,1.5 - parent: 1 - - uid: 35 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,1.5 - parent: 1 - - uid: 36 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,2.5 - parent: 1 - - uid: 37 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 1 - - uid: 58 - components: - - type: Transform - pos: -6.5,26.5 - parent: 1 - - uid: 74 - components: - - type: Transform - pos: 9.5,27.5 - parent: 1 - - uid: 75 - components: - - type: Transform - pos: 8.5,26.5 - parent: 1 - - uid: 96 - components: - - type: Transform - pos: -7.5,26.5 - parent: 1 - - uid: 117 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,1.5 - parent: 1 - - uid: 118 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,13.5 - parent: 1 - - uid: 120 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,13.5 - parent: 1 - - uid: 190 - components: - - type: Transform - pos: 7.5,26.5 - parent: 1 - - uid: 192 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,1.5 - parent: 1 - - uid: 193 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,1.5 - parent: 1 - - uid: 194 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,1.5 - parent: 1 - - uid: 195 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,1.5 - parent: 1 - - uid: 196 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,1.5 - parent: 1 - - uid: 199 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,2.5 - parent: 1 - - uid: 200 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,15.5 - parent: 1 - - uid: 201 - components: - - type: Transform - pos: -8.5,27.5 - parent: 1 - - uid: 217 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,15.5 - parent: 1 - - uid: 302 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,14.5 - parent: 1 - - uid: 972 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,14.5 - parent: 1 - - proto: ToiletEmpty - entities: - - uid: 433 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,16.5 - parent: 1 - - proto: ToolboxElectricalFilled - entities: - - uid: 1016 - components: - - type: Transform - pos: 8.633488,10.665126 - parent: 1 - - proto: ToyAi - entities: - - uid: 1046 - components: - - type: Transform - pos: 2.6159043,9.357023 - parent: 1 - - proto: ToyFigurineBartender - entities: - - uid: 810 - components: - - type: Transform - pos: 6.42688,10.518995 - parent: 1 - - proto: VendingBarDrobe - entities: - - uid: 323 - components: - - type: Transform - pos: 8.5,22.5 - parent: 1 - - proto: VendingMachineBooze - entities: - - uid: 333 - components: - - type: Transform - pos: 5.5,13.5 - parent: 1 - - proto: VendingMachineCargoDrobe - entities: - - uid: 291 - components: - - type: Transform - pos: 9.5,22.5 - parent: 1 - - proto: VendingMachineCigs - entities: - - uid: 977 - components: - - type: Transform - pos: -3.5,19.5 - parent: 1 - - proto: VendingMachineCuddlyCritterVend - entities: - - uid: 243 - components: - - type: Transform - pos: 10.5,25.5 - parent: 1 - - proto: VendingMachineEngiDrobe - entities: - - uid: 24 - components: - - type: Transform - pos: 10.5,22.5 - parent: 1 - - proto: VendingMachineSalvage - entities: - - uid: 425 - components: - - type: Transform - pos: -9.5,25.5 - parent: 1 - - proto: VendingMachineSciDrobe - entities: - - uid: 410 - components: - - type: Transform - pos: 5.5,6.5 - parent: 1 - - proto: VendingMachineTankDispenserEVA - entities: - - uid: 316 - components: - - type: Transform - pos: -1.5,0.5 - parent: 1 - - proto: WallShuttle - entities: - - uid: 33 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,11.5 - parent: 1 - - uid: 38 - components: - - type: Transform - pos: 11.5,25.5 - parent: 1 - - uid: 39 - components: - - type: Transform - pos: 11.5,21.5 - parent: 1 - - uid: 41 - components: - - type: Transform - pos: 11.5,17.5 - parent: 1 - - uid: 46 - components: - - type: Transform - pos: -10.5,21.5 - parent: 1 - - uid: 47 - components: - - type: Transform - pos: -8.5,26.5 - parent: 1 - - uid: 50 - components: - - type: Transform - pos: -9.5,17.5 - parent: 1 - - uid: 54 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,26.5 - parent: 1 - - uid: 63 - components: - - type: Transform - pos: -9.5,15.5 - parent: 1 - - uid: 67 - components: - - type: Transform - pos: 11.5,6.5 - parent: 1 - - uid: 68 - components: - - type: Transform - pos: 6.5,14.5 - parent: 1 - - uid: 69 - components: - - type: Transform - pos: 10.5,11.5 - parent: 1 - - uid: 71 - components: - - type: Transform - pos: 6.5,12.5 - parent: 1 - - uid: 72 - components: - - type: Transform - pos: 7.5,12.5 - parent: 1 - - uid: 73 - components: - - type: Transform - pos: 7.5,11.5 - parent: 1 - - uid: 80 - components: - - type: Transform - pos: -6.5,15.5 - parent: 1 - - uid: 81 - components: - - type: Transform - pos: -6.5,14.5 - parent: 1 - - uid: 84 - components: - - type: Transform - pos: -10.5,17.5 - parent: 1 - - uid: 87 - components: - - type: Transform - pos: -9.5,16.5 - parent: 1 - - uid: 88 - components: - - type: Transform - pos: 7.5,15.5 - parent: 1 - - uid: 90 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,10.5 - parent: 1 - - uid: 91 - components: - - type: Transform - pos: 7.5,14.5 - parent: 1 - - uid: 93 - components: - - type: Transform - pos: -9.5,27.5 - parent: 1 - - uid: 99 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,3.5 - parent: 1 - - uid: 100 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,2.5 - parent: 1 - - uid: 101 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 1 - - uid: 102 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,3.5 - parent: 1 - - uid: 103 - components: - - type: Transform - pos: -10.5,29.5 - parent: 1 - - uid: 104 - components: - - type: Transform - pos: -10.5,28.5 - parent: 1 - - uid: 105 - components: - - type: Transform - pos: -10.5,27.5 - parent: 1 - - uid: 106 - components: - - type: Transform - pos: -10.5,26.5 - parent: 1 - - uid: 107 - components: - - type: Transform - pos: -10.5,25.5 - parent: 1 - - uid: 108 - components: - - type: Transform - pos: -6.5,25.5 - parent: 1 - - uid: 109 - components: - - type: Transform - pos: -7.5,25.5 - parent: 1 - - uid: 111 - components: - - type: Transform - pos: -10.5,6.5 - parent: 1 - - uid: 113 - components: - - type: Transform - pos: 11.5,10.5 - parent: 1 - - uid: 114 - components: - - type: Transform - pos: 11.5,9.5 - parent: 1 - - uid: 115 - components: - - type: Transform - pos: 11.5,8.5 - parent: 1 - - uid: 116 - components: - - type: Transform - pos: -10.5,2.5 - parent: 1 - - uid: 119 - components: - - type: Transform - pos: 11.5,24.5 - parent: 1 - - uid: 121 - components: - - type: Transform - pos: -8.5,25.5 - parent: 1 - - uid: 123 - components: - - type: Transform - pos: 9.5,26.5 - parent: 1 - - uid: 124 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,25.5 - parent: 1 - - uid: 131 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 1 - - uid: 132 - components: - - type: Transform - pos: 11.5,29.5 - parent: 1 - - uid: 133 - components: - - type: Transform - pos: 11.5,5.5 - parent: 1 - - uid: 134 - components: - - type: Transform - pos: 7.5,25.5 - parent: 1 - - uid: 135 - components: - - type: Transform - pos: 11.5,3.5 - parent: 1 - - uid: 136 - components: - - type: Transform - pos: 9.5,2.5 - parent: 1 - - uid: 138 - components: - - type: Transform - pos: 11.5,1.5 - parent: 1 - - uid: 139 - components: - - type: Transform - pos: -5.5,14.5 - parent: 1 - - uid: 140 - components: - - type: Transform - pos: 11.5,2.5 - parent: 1 - - uid: 141 - components: - - type: Transform - pos: 10.5,2.5 - parent: 1 - - uid: 142 - components: - - type: Transform - pos: -5.5,2.5 - parent: 1 - - uid: 143 - components: - - type: Transform - pos: 8.5,2.5 - parent: 1 - - uid: 144 - components: - - type: Transform - pos: 6.5,2.5 - parent: 1 - - uid: 145 - components: - - type: Transform - pos: 6.5,1.5 - parent: 1 - - uid: 146 - components: - - type: Transform - pos: -9.5,2.5 - parent: 1 - - uid: 147 - components: - - type: Transform - pos: -6.5,2.5 - parent: 1 - - uid: 148 - components: - - type: Transform - pos: -5.5,1.5 - parent: 1 - - uid: 149 - components: - - type: Transform - pos: -8.5,2.5 - parent: 1 - - uid: 154 - components: - - type: Transform - pos: 11.5,7.5 - parent: 1 - - uid: 157 - components: - - type: Transform - pos: -10.5,1.5 - parent: 1 - - uid: 159 - components: - - type: Transform - pos: -10.5,3.5 - parent: 1 - - uid: 161 - components: - - type: Transform - pos: 11.5,23.5 - parent: 1 - - uid: 162 - components: - - type: Transform - pos: -5.5,12.5 - parent: 1 - - uid: 165 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,1.5 - parent: 1 - - uid: 166 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,2.5 - parent: 1 - - uid: 167 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,2.5 - parent: 1 - - uid: 168 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,3.5 - parent: 1 - - uid: 169 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,3.5 - parent: 1 - - uid: 170 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,3.5 - parent: 1 - - uid: 171 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,1.5 - parent: 1 - - uid: 172 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,2.5 - parent: 1 - - uid: 173 - components: - - type: Transform - pos: 10.5,17.5 - parent: 1 - - uid: 174 - components: - - type: Transform - pos: 10.5,16.5 - parent: 1 - - uid: 175 - components: - - type: Transform - pos: 10.5,15.5 - parent: 1 - - uid: 178 - components: - - type: Transform - pos: 5.5,23.5 - parent: 1 - - uid: 179 - components: - - type: Transform - pos: 5.5,24.5 - parent: 1 - - uid: 183 - components: - - type: Transform - pos: 9.5,25.5 - parent: 1 - - uid: 187 - components: - - type: Transform - pos: 10.5,26.5 - parent: 1 - - uid: 188 - components: - - type: Transform - pos: 8.5,25.5 - parent: 1 - - uid: 189 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,25.5 - parent: 1 - - uid: 191 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,27.5 - parent: 1 - - uid: 197 - components: - - type: Transform - pos: 11.5,22.5 - parent: 1 - - uid: 198 - components: - - type: Transform - pos: -7.5,2.5 - parent: 1 - - uid: 202 - components: - - type: Transform - pos: 11.5,26.5 - parent: 1 - - uid: 203 - components: - - type: Transform - pos: 11.5,27.5 - parent: 1 - - uid: 204 - components: - - type: Transform - pos: 11.5,28.5 - parent: 1 - - uid: 207 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-0.5 - parent: 1 - - uid: 212 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,0.5 - parent: 1 - - uid: 214 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 1 - - uid: 215 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,8.5 - parent: 1 - - uid: 216 - components: - - type: Transform - pos: 7.5,2.5 - parent: 1 - - uid: 218 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,0.5 - parent: 1 - - uid: 220 - components: - - type: Transform - pos: -2.5,20.5 - parent: 1 - - uid: 222 - components: - - type: Transform - pos: -2.5,19.5 - parent: 1 - - uid: 224 - components: - - type: Transform - pos: -4.5,20.5 - parent: 1 - - uid: 225 - components: - - type: Transform - pos: 3.5,20.5 - parent: 1 - - uid: 226 - components: - - type: Transform - pos: 3.5,19.5 - parent: 1 - - uid: 227 - components: - - type: Transform - pos: 4.5,20.5 - parent: 1 - - uid: 228 - components: - - type: Transform - pos: -3.5,20.5 - parent: 1 - - uid: 229 - components: - - type: Transform - pos: 5.5,20.5 - parent: 1 - - uid: 230 - components: - - type: Transform - pos: 5.5,22.5 - parent: 1 - - uid: 231 - components: - - type: Transform - pos: -4.5,21.5 - parent: 1 - - uid: 232 - components: - - type: Transform - pos: 5.5,21.5 - parent: 1 - - uid: 273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,8.5 - parent: 1 - - uid: 332 - components: - - type: Transform - pos: -10.5,5.5 - parent: 1 - - uid: 334 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,11.5 - parent: 1 - - uid: 335 - components: - - type: Transform - pos: -10.5,7.5 - parent: 1 - - uid: 337 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,8.5 - parent: 1 - - uid: 339 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,11.5 - parent: 1 - - uid: 341 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,11.5 - parent: 1 - - uid: 691 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,11.5 - parent: 1 - - uid: 1056 - components: - - type: Transform - pos: -11.5,21.5 - parent: 1 - - uid: 1057 - components: - - type: Transform - pos: -11.5,17.5 - parent: 1 - - uid: 1058 - components: - - type: Transform - pos: 12.5,21.5 - parent: 1 - - uid: 1059 - components: - - type: Transform - pos: 12.5,17.5 - parent: 1 - - uid: 1060 - components: - - type: Transform - pos: -11.5,19.5 - parent: 1 - - uid: 1061 - components: - - type: Transform - pos: 12.5,19.5 - parent: 1 - - proto: WallShuttleDiagonal - entities: - - uid: 27 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,28.5 - parent: 1 - - uid: 28 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,26.5 - parent: 1 - - uid: 29 - components: - - type: Transform - pos: 5.5,25.5 - parent: 1 - - uid: 97 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-0.5 - parent: 1 - - uid: 98 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 1 - - uid: 125 - components: - - type: Transform - pos: 10.5,28.5 - parent: 1 - - uid: 128 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,11.5 - parent: 1 - - uid: 129 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,16.5 - parent: 1 - - uid: 130 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,16.5 - parent: 1 - - uid: 182 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,25.5 - parent: 1 - - uid: 185 - components: - - type: Transform - pos: 6.5,26.5 - parent: 1 - - uid: 235 - components: - - type: Transform - pos: 6.5,8.5 - parent: 1 - - uid: 249 - components: - - type: Transform - pos: 7.5,21.5 - parent: 1 - - uid: 815 - components: - - type: Transform - pos: -10.5,11.5 - parent: 1 - - proto: WallShuttleInterior - entities: - - uid: 2 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,10.5 - parent: 1 - - uid: 49 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,12.5 - parent: 1 - - uid: 51 - components: - - type: Transform - pos: 6.5,6.5 - parent: 1 - - uid: 60 - components: - - type: Transform - pos: 6.5,5.5 - parent: 1 - - uid: 83 - components: - - type: Transform - pos: 6.5,7.5 - parent: 1 - - uid: 236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,8.5 - parent: 1 - - uid: 237 - components: - - type: Transform - pos: 6.5,4.5 - parent: 1 - - uid: 247 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,20.5 - parent: 1 - - uid: 248 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,21.5 - parent: 1 - - uid: 256 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,18.5 - parent: 1 - - uid: 259 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,17.5 - parent: 1 - - uid: 260 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,17.5 - parent: 1 - - uid: 261 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,18.5 - parent: 1 - - uid: 262 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,18.5 - parent: 1 - - uid: 263 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,18.5 - parent: 1 - - uid: 264 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,18.5 - parent: 1 - - uid: 265 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,18.5 - parent: 1 - - uid: 267 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,21.5 - parent: 1 - - uid: 268 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,21.5 - parent: 1 - - uid: 269 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,17.5 - parent: 1 - - uid: 270 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,21.5 - parent: 1 - - uid: 271 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,21.5 - parent: 1 - - uid: 272 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,17.5 - parent: 1 - - uid: 361 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,11.5 - parent: 1 - - uid: 362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,11.5 - parent: 1 - - uid: 363 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,11.5 - parent: 1 - - uid: 364 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,10.5 - parent: 1 - - uid: 365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,9.5 - parent: 1 - - uid: 366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,11.5 - parent: 1 - - uid: 367 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,11.5 - parent: 1 - - uid: 368 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,11.5 - parent: 1 - - uid: 369 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,10.5 - parent: 1 - - uid: 370 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,9.5 - parent: 1 - - uid: 372 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,7.5 - parent: 1 - - uid: 373 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,7.5 - parent: 1 - - uid: 374 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,8.5 - parent: 1 - - uid: 375 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,7.5 - parent: 1 - - uid: 376 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,7.5 - parent: 1 - - uid: 377 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,7.5 - parent: 1 - - uid: 378 - components: - - type: Transform - pos: 1.5,6.5 - parent: 1 - - uid: 379 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,7.5 - parent: 1 - - uid: 380 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,4.5 - parent: 1 - - uid: 381 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,3.5 - parent: 1 - - uid: 382 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,3.5 - parent: 1 - - uid: 383 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 1 - - uid: 384 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,4.5 - parent: 1 - - uid: 385 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,3.5 - parent: 1 - - uid: 386 - components: - - type: Transform - pos: 4.5,7.5 - parent: 1 - - uid: 387 - components: - - type: Transform - pos: 3.5,7.5 - parent: 1 - - uid: 418 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 1 - - uid: 427 - components: - - type: Transform - pos: -5.5,21.5 - parent: 1 - - uid: 428 - components: - - type: Transform - pos: -6.5,21.5 - parent: 1 - - uid: 439 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,14.5 - parent: 1 - - uid: 440 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,18.5 - parent: 1 - - uid: 442 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 1 - - uid: 443 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,15.5 - parent: 1 - - uid: 444 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,14.5 - parent: 1 - - uid: 445 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,14.5 - parent: 1 - - uid: 447 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,14.5 - parent: 1 - - uid: 448 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,15.5 - parent: 1 - - uid: 449 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,18.5 - parent: 1 - - uid: 450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,14.5 - parent: 1 - - uid: 451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,14.5 - parent: 1 - - uid: 452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,14.5 - parent: 1 - - uid: 505 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,14.5 - parent: 1 - - uid: 506 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,13.5 - parent: 1 - - uid: 643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,3.5 - parent: 1 - - uid: 970 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,8.5 - parent: 1 - - proto: WardrobeScienceFilled - entities: - - uid: 429 - components: - - type: Transform - pos: -1.5,10.5 - parent: 1 - - uid: 431 - components: - - type: Transform - pos: 4.5,6.5 - parent: 1 - - uid: 647 - components: - - type: Transform - pos: -1.5,9.5 - parent: 1 - - proto: WarpPointShip - entities: - - uid: 485 - components: - - type: Transform - pos: 0.5,15.5 - parent: 1 - - proto: WaterCooler - entities: - - uid: 975 - components: - - type: Transform - pos: 1.5,12.5 - parent: 1 - - proto: WindoorSecure - entities: - - uid: 811 - components: - - type: Transform - pos: 5.5,10.5 - parent: 1 +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: Stratos + - type: Transform + pos: -0.54525757,-0.44343954 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AgAAAAAAAAIAAAAAAAB9AAAAAAAAfAAAAAAAAC4AAAAAAAAAAAAAAAAAfQAAAAAAAHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAABAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfAAAAAAAAHwAAAAAAAB8AAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAABAAAAAAAAAQAAAAAAAH0AAAAAAAB9AAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAACAAAAAAAAfQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAfQAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAH0AAAAAAAB9AAAAAAAAAgAAAAAAAH0AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAEAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAACAAAAAAAAfQAAAAAAAAQAAAAAAAB9AAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAB9AAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAfQAAAAAAAH0AAAAAAAAEAAAAAAAAfQAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZwAAAAAAAH0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAAEAAAAAAAB9AAAAAAAAfQAAAAAAAAQAAAAAAAAEAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGcAAAAAAAB9AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAC4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABnAAAAAAAAfQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAfQAAAAAAAH0AAAAAAAB8AAAAAAAAfAAAAAAAAC4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAAQAAAAAAAAEAAAAAAAB9AAAAAAAAeQAAAAAAAHkAAAAAAAB9AAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGAAAAAAAAfQAAAAAAAAEAAAAAAAABAAAAAAAAfQAAAAAAAAsAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAfQAAAAAAAHwAAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAAQAAAAAAAC4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAIAAAAAAAB9AAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC4AAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC4AAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB9AAAAAAAAAgAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAH0AAAAAAAAAAAAAAAAALgAAAAAAAHwAAAAAAAB9AAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAHwAAAAAAAB8AAAAAAAAfAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAgAAAAAAAAIAAAAAAAB9AAAAAAAAfQAAAAAAAAYAAAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAAAAQAAAAAAAH0AAAAAAABnAAAAAAAAZwAAAAAAAGcAAAAAAABnAAAAAAAAAQAAAAAAAAEAAAAAAAAGAAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAAAH0AAAAAAAB9AAAAAAAAZwAAAAAAAAMAAAAAAAADAAAAAAAAZwAAAAAAAAEAAAAAAAABAAAAAAAABgAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAHwAAAAAAAB9AAAAAAAABAAAAAAAAGcAAAAAAAADAAAAAAAAAwAAAAAAAGcAAAAAAAB9AAAAAAAAfQAAAAAAAAYAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAABAAAAAAAAfQAAAAAAAAQAAAAAAABnAAAAAAAAAwAAAAAAAAMAAAAAAABnAAAAAAAABAAAAAAAAH0AAAAAAAAGAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAAAH0AAAAAAAAEAAAAAAAAZwAAAAAAAAMAAAAAAAADAAAAAAAAZwAAAAAAAAQAAAAAAAB9AAAAAAAACAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAHwAAAAAAAB9AAAAAAAAfQAAAAAAAGcAAAAAAAADAAAAAAAAAwAAAAAAAGcAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAAAfQAAAAAAAAQAAAAAAABnAAAAAAAAZwAAAAAAAGcAAAAAAABnAAAAAAAABAAAAAAAAH0AAAAAAABnAAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAuAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAQAAAAAAAB9AAAAAAAAAwAAAAAAAAMAAAAAAAB9AAAAAAAAZwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC4AAAAAAAB8AAAAAAAAfAAAAAAAAH0AAAAAAAB9AAAAAAAAAQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAGcAAAAAAABnAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAH0AAAAAAAB9AAAAAAAABwAAAAAAAH0AAAAAAAB9AAAAAAAAZwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAH0AAAAAAAAHAAAAAAAABwAAAAAAAAcAAAAAAAB9AAAAAAAAfQAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAAAH0AAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAB9AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAABgAAAAAAAA== + version: 7 + 0,1: + ind: 0,1 + tiles: AwAAAAAAAAQAAAAAAAAEAAAAAAAABgAAAAAAAH0AAAAAAAALAAAAAAAACwAAAAAAAAsAAAAAAAAMAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMAAAAAAAAEAAAAAAAABAAAAAAAAAYAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAQAAAAAAAH0AAAAAAAB9AAAAAAAACAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADAAAAAAAABAAAAAAAAAQAAAAAAAAGAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAEAAAAAAAAGAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAABgAAAAAAAH0AAAAAAAACAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAB9AAAAAAAAfQAAAAAAAAgAAAAAAAB9AAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAAEAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAHwAAAAAAAB9AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAC4AAAAAAAAAAAAAAAAAfQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAeQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAC4AAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB5AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAfQAAAAAAAHkAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAuAAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAABAAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC4AAAAAAAB8AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAACQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC4AAAAAAAB8AAAAAAAAfQAAAAAAAAkAAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC4AAAAAAAB9AAAAAAAAfQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC4AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAEAAAAAAAABAAAAAAAAAQAAAAAAAB9AAAAAAAAeQAAAAAAAHkAAAAAAAB5AAAAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAACAAAAAAAAH0AAAAAAAB9AAAAAAAABAAAAAAAAAQAAAAAAAACAAAAAAAAfQAAAAAAAH0AAAAAAAAGAAAAAAAAAwAAAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAIAAAAAAAABAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAABAAAAAAAABgAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAACAAAAAAAAfQAAAAAAAAYAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAAGAAAAAAAAAQAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAAAAAAAAgAAAAAAAAEAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAABgAAAAAAAH0AAAAAAAAIAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAAAAQAAAAAAAAIAAAAAAAAGAAAAAAAABgAAAAAAAAYAAAAAAAB9AAAAAAAAfAAAAAAAAH0AAAAAAAB9AAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB8AAAAAAAAfAAAAAAAAAEAAAAAAAACAAAAAAAABgAAAAAAAAYAAAAAAAAGAAAAAAAAfQAAAAAAAAAAAAAAAAAuAAAAAAAAfQAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAHwAAAAAAAABAAAAAAAAAgAAAAAAAAQAAAAAAAAEAAAAAAAABAAAAAAAAH0AAAAAAAAAAAAAAAAAAAAAAAAAAC4AAAAAAAB9AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAAAAB8AAAAAAAAfQAAAAAAAAQAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAAuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfQAAAAAAAH0AAAAAAAB9AAAAAAAAfQAAAAAAAHwAAAAAAAAuAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfQAAAAAAAAUAAAAAAAB9AAAAAAAAfAAAAAAAAC4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAH0AAAAAAAB9AAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAB9AAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + version: 7 + - 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 + dampingModifier: 0.25 + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + angle: -3.141592653589793 rad + color: '#52B4E996' + id: ArrowsGreyscale + decals: + 491: 6,15 + 492: 7,15 + - node: + angle: -3.141592653589793 rad + color: '#8D1C9996' + id: ArrowsGreyscale + decals: + 522: 0,21 + 523: 0,22 + - node: + color: '#8D1C9996' + id: ArrowsGreyscale + decals: + 451: 0,9 + 452: 0,9 + 454: 0,10 + 455: 0,10 + - node: + angle: 3.141592653589793 rad + color: '#8D1C9996' + id: ArrowsGreyscale + decals: + 407: -7,9 + 408: -5,9 + - node: + angle: -1.5707963267948966 rad + color: '#A46106F2' + id: ArrowsGreyscale + decals: + 735: -9,22 + 736: -9,23 + 737: -9,24 + - node: + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 371: -1,0 + 372: 1,0 + 373: 1,2 + 374: -1,2 + - node: + color: '#8C347F96' + id: Bot + decals: + 413: -2,7 + - node: + color: '#8D1C9996' + id: Bot + decals: + 345: 7,3 + 346: 11,8 + 347: 5,13 + 348: 6,13 + - node: + color: '#A4610696' + id: Bot + decals: + 358: 2,2 + 359: 3,2 + 360: 4,2 + - node: + color: '#A46106F2' + id: Bot + decals: + 712: -9,18 + 713: -9,20 + 714: -5,20 + 715: -5,18 + - node: + color: '#D4D4D431' + id: Bot + decals: + 575: 5,18 + 576: 5,19 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 137: 10,9 + 138: 11,9 + 139: 10,7 + 140: 9,7 + 836: 0,14 + - node: + color: '#334E6DC8' + id: BotGreyscale + decals: + 135: 7,4 + - node: + color: '#79150096' + id: BotGreyscale + decals: + 136: 7,5 + - node: + color: '#8C347F96' + id: BotGreyscale + decals: + 412: -2,7 + - node: + angle: -3.141592653589793 rad + color: '#8D1C9996' + id: BotGreyscale + decals: + 515: 0,21 + - node: + color: '#8D1C9996' + id: BotGreyscale + decals: + 343: -2,6 + 344: 0,6 + 349: 5,6 + 350: 3,5 + 351: 4,5 + 352: 2,6 + 353: 3,6 + 354: 4,6 + 355: 2,2 + 356: 3,2 + 357: 4,2 + 403: -8,4 + 404: -8,8 + 405: -5,4 + 406: -5,8 + 443: 0,11 + - node: + angle: -1.5707963267948966 rad + color: '#A46106F2' + id: BotGreyscale + decals: + 738: -9,22 + 739: -9,23 + 740: -9,24 + 741: -6,17 + - node: + color: '#A46106F2' + id: BotGreyscale + decals: + 703: -8,24 + 704: -7,24 + 705: -6,24 + 706: -7,17 + 707: -7,16 + 708: -9,18 + 709: -9,20 + 710: -5,18 + 711: -5,20 + - node: + color: '#D4D4D428' + id: BotGreyscale + decals: + 568: 7,20 + 569: 6,20 + 570: 5,20 + - node: + color: '#D4D4D431' + id: BotGreyscale + decals: + 577: 5,19 + - node: + color: '#D4D4D495' + id: BotGreyscale + decals: + 769: 1,18 + 770: 1,17 + 771: 1,16 + 772: 2,16 + 773: 2,17 + 774: 2,18 + - node: + color: '#D4D4D49E' + id: BotGreyscale + decals: + 571: 6,20 + 572: 7,20 + 573: 5,20 + 574: 5,18 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 141: 7,6 + 142: 7,8 + 143: 7,7 + 332: 2,2 + 333: 4,2 + 334: 3,2 + 369: -1,0 + 370: 1,0 + 396: -9,5 + 397: -9,6 + 398: -9,7 + 399: -9,9 + 400: -4,6 + 401: -4,7 + 402: -4,9 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 393: -9,9 + 394: -9,7 + 395: -9,6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkBox + decals: + 690: -9,25 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndE + decals: + 131: 11,7 + 132: 11,9 + 696: -6,24 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndN + decals: + 133: 7,7 + 694: -7,17 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndS + decals: + 134: 7,6 + 695: -7,16 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndW + decals: + 127: 9,7 + 128: 10,9 + 693: -8,24 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 130: 10,7 + 692: -7,24 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 129: 10,7 + 691: -7,24 + - node: + color: '#8D1C99F2' + id: BrickTileSteelCornerNe + decals: + 318: 0,6 + - node: + color: '#A46106F2' + id: BrickTileSteelCornerNe + decals: + 330: 4,3 + 650: -5,20 + 701: -6,23 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 563: 9,20 + 766: 2,18 + 833: 0,18 + 845: 3,19 + - node: + color: '#8D1C99F2' + id: BrickTileSteelCornerNw + decals: + 316: -2,6 + - node: + color: '#A46106F2' + id: BrickTileSteelCornerNw + decals: + 325: 1,3 + 643: -9,20 + 700: -8,23 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 562: 5,20 + 765: 1,18 + 834: -2,18 + 837: -3,19 + - node: + color: '#8D1C99F2' + id: BrickTileSteelCornerSe + decals: + 323: 0,2 + - node: + color: '#A46106F2' + id: BrickTileSteelCornerSe + decals: + 331: 4,2 + 648: -5,18 + 702: -6,22 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 561: 9,18 + 768: 2,16 + 831: 0,16 + 846: 3,15 + - node: + color: '#8D1C99F2' + id: BrickTileSteelCornerSw + decals: + 312: -2,2 + - node: + color: '#A46106F2' + id: BrickTileSteelCornerSw + decals: + 324: 1,2 + 639: -9,18 + 697: -8,22 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 552: 5,18 + 763: 1,16 + 828: -2,17 + 830: -1,16 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndE + decals: + 566: 8,19 + 626: -6,19 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndN + decals: + 367: -1,5 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndS + decals: + 365: -1,3 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelEndW + decals: + 567: 6,19 + 625: -8,19 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerSw + decals: + 829: -1,17 + - node: + color: '#8D1C99F2' + id: BrickTileSteelLineE + decals: + 319: 0,5 + 320: 0,4 + 321: 0,3 + - node: + color: '#A46106F2' + id: BrickTileSteelLineE + decals: + 649: -5,19 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 368: -1,4 + 557: 9,19 + 767: 2,17 + 832: 0,17 + 851: 3,16 + 852: 3,17 + 853: 3,18 + - node: + color: '#8D1C99F2' + id: BrickTileSteelLineN + decals: + 317: -1,6 + - node: + color: '#A46106F2' + id: BrickTileSteelLineN + decals: + 328: 2,3 + 329: 3,3 + 645: -8,20 + 646: -7,20 + 647: -6,20 + 699: -7,23 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 558: 8,20 + 559: 7,20 + 560: 6,20 + 565: 7,19 + 624: -7,19 + 835: -1,18 + 840: -2,19 + 841: -1,19 + 842: 0,19 + 843: 1,19 + 844: 2,19 + - node: + color: '#8D1C99F2' + id: BrickTileSteelLineS + decals: + 322: -1,2 + - node: + color: '#A46106F2' + id: BrickTileSteelLineS + decals: + 326: 2,2 + 327: 3,2 + 640: -8,18 + 641: -7,18 + 642: -6,18 + 698: -7,22 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 554: 6,18 + 555: 7,18 + 556: 8,18 + 564: 7,19 + 623: -7,19 + 847: -1,15 + 848: 0,15 + 849: 1,15 + 850: 2,15 + - node: + color: '#8D1C99F2' + id: BrickTileSteelLineW + decals: + 313: -2,3 + 314: -2,4 + 315: -2,5 + - node: + color: '#A46106F2' + id: BrickTileSteelLineW + decals: + 644: -9,19 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 366: -1,4 + 553: 5,19 + 764: 1,17 + 838: -3,18 + 839: -3,17 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteBox + decals: + 33: -9,9 + 34: -7,10 + 104: -4,9 + 442: -1,10 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNe + decals: + 66: -6,8 + 79: -5,9 + 431: 0,11 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerNw + decals: + 65: -7,8 + 76: -8,9 + 429: -2,11 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSe + decals: + 64: -6,4 + 67: -5,3 + 427: 0,9 + 483: 8,15 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteCornerSw + decals: + 57: -7,4 + 70: -8,3 + 425: -2,9 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndN + decals: + 37: -9,7 + 38: -4,7 + 485: 8,16 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndS + decals: + 31: -4,6 + 32: -9,5 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndW + decals: + 478: 5,15 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNe + decals: + 93: -8,3 + 440: -2,9 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerNw + decals: + 87: -5,3 + 435: 0,9 + 484: 8,15 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSe + decals: + 102: -8,9 + 439: -2,11 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteInnerSw + decals: + 99: -5,9 + 437: 0,11 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 35: -9,6 + 58: -6,5 + 59: -6,6 + 60: -6,7 + 80: -5,8 + 81: -5,7 + 82: -5,6 + 83: -5,5 + 84: -5,4 + 88: -8,4 + 89: -8,5 + 90: -8,6 + 91: -8,7 + 92: -8,8 + 432: 0,10 + 441: -2,10 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 77: -7,9 + 78: -6,9 + 85: -7,3 + 86: -6,3 + 434: -1,9 + 479: 6,15 + 480: 7,15 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 68: -6,3 + 69: -7,3 + 100: -7,9 + 101: -6,9 + 426: -1,9 + 438: -1,11 + 481: 6,15 + 482: 7,15 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 36: -9,6 + 61: -7,5 + 62: -7,6 + 63: -7,7 + 71: -8,4 + 72: -8,5 + 73: -8,6 + 74: -8,7 + 75: -8,8 + 94: -5,4 + 95: -5,5 + 96: -5,6 + 97: -5,7 + 98: -5,8 + 428: -2,10 + 436: 0,10 + - node: + color: '#D4D4D431' + id: CautionGreyscale + decals: + 619: 8,23 + 620: 11,23 + - node: + cleanable: True + color: '#79150096' + id: Delivery + decals: + 244: 6,11 + - node: + color: '#52B4E996' + id: DeliveryGreyscale + decals: + 486: 6,16 + 487: 7,16 + 488: 5,16 + 489: 8,16 + 490: 5,15 + - node: + cleanable: True + color: '#79150096' + id: DeliveryGreyscale + decals: + 242: 5,12 + 243: 6,12 + - node: + angle: -3.141592653589793 rad + color: '#8D1C9996' + id: DeliveryGreyscale + decals: + 511: 11,18 + 512: 11,20 + 513: -11,18 + 514: -11,20 + 516: 0,22 + - node: + color: '#8D1C9996' + id: DeliveryGreyscale + decals: + 45: -7,4 + 46: -7,5 + 47: -7,6 + 48: -7,7 + 49: -7,8 + 50: -6,8 + 51: -6,7 + 52: -6,6 + 53: -6,5 + 54: -6,4 + 361: -1,3 + 362: -1,4 + 363: -1,5 + 445: -2,9 + 446: -2,10 + 447: -2,11 + 448: -1,10 + 449: -1,12 + 450: -1,14 + 453: -1,9 + - node: + angle: 1.5707963267948966 rad + color: '#8D1C9996' + id: DeliveryGreyscale + decals: + 410: -6,12 + 411: -5,12 + - node: + angle: -1.5707963267948966 rad + color: '#A46106F2' + id: DeliveryGreyscale + decals: + 742: -8,19 + 743: -7,19 + 744: -6,19 + - node: + color: '#D4D4D428' + id: DeliveryGreyscale + decals: + 820: -1,16 + 821: 0,16 + 822: 0,17 + 823: 0,18 + 824: -1,18 + 825: -1,17 + 826: -2,17 + 827: -2,18 + - node: + cleanable: True + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 509: 11,19 + 510: -11,19 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 55: -6,2 + 56: -5,2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 872: 3,20 + 873: -3,20 + - node: + cleanable: True + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 501: 6,15 + 502: 7,15 + 503: 8,15 + 504: 8,16 + 505: 5,15 + 506: 7,16 + 507: 6,16 + 508: 5,16 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 230: 4,9 + 231: 3,9 + 232: 3,10 + 233: 2,10 + 234: 2,12 + 235: 2,12 + 236: 2,11 + 237: 5,9 + 238: 6,9 + 239: 6,10 + 376: -2,3 + 377: -2,4 + 378: -2,5 + 379: -1,6 + 380: 0,5 + 381: 0,4 + 382: 0,3 + 383: -1,2 + 384: 0,2 + 385: 1,2 + 386: 1,3 + 387: 2,3 + 388: 3,3 + 389: 4,3 + 390: 3,2 + 391: 2,2 + 392: 4,2 + 578: 6,18 + 579: 7,18 + 580: 8,18 + 581: 9,18 + 582: 9,19 + 583: 9,20 + 584: 8,20 + 585: 7,20 + 716: -9,18 + 717: -9,19 + 718: -9,20 + 719: -8,20 + 720: -7,20 + 721: -6,20 + 722: -5,20 + 723: -5,18 + 724: -6,18 + 725: -7,18 + 726: -8,18 + 727: -8,22 + 728: -8,23 + 729: -7,23 + 730: -6,23 + 731: -6,22 + 732: -7,22 + 733: -7,16 + 734: -7,17 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 240: 5,12 + 241: 6,12 + - node: + cleanable: True + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: DirtMedium + decals: + 493: 6,15 + 494: 7,15 + 495: 8,15 + 496: 8,16 + 497: 7,16 + 498: 6,16 + 499: 5,16 + 500: 5,15 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 854: -1,15 + 855: -3,17 + 856: -3,18 + 857: -2,16 + 858: -3,16 + 859: 0,15 + 860: -3,19 + 861: 1,15 + 862: 2,15 + 863: 3,15 + 864: 3,16 + 865: 3,17 + 866: 3,18 + 867: 3,19 + 868: 2,19 + 869: 1,19 + 870: -1,19 + 871: -2,19 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale + decals: + 306: -1,6 + 307: 2,3 + 308: 3,3 + 652: -7,23 + - node: + color: '#D4D4D431' + id: HalfTileOverlayGreyscale + decals: + 634: -8,20 + 635: -7,20 + 636: -6,20 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale180 + decals: + 300: -1,2 + 301: 2,2 + 302: 3,2 + 651: -7,22 + - node: + color: '#D4D4D431' + id: HalfTileOverlayGreyscale180 + decals: + 631: -8,18 + 632: -7,18 + 633: -6,18 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale270 + decals: + 303: -2,3 + 304: -2,4 + 305: -2,5 + - node: + color: '#D4D4D431' + id: HalfTileOverlayGreyscale270 + decals: + 638: -9,19 + - node: + color: '#D4D4D428' + id: HalfTileOverlayGreyscale90 + decals: + 309: 0,3 + 310: 0,4 + 311: 0,5 + - node: + color: '#D4D4D431' + id: HalfTileOverlayGreyscale90 + decals: + 637: -5,19 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 180: 9,9 + 181: 7,3 + - node: + angle: 1.5707963267948966 rad + color: '#8D1C9996' + id: LoadingAreaGreyscale + decals: + 409: 2,6 + - node: + color: '#D4D4D496' + id: MonoOverlay + decals: + 11: -6,3 + 12: -5,3 + 14: -5,5 + 15: -5,6 + 16: -5,7 + 17: -5,8 + 19: -6,9 + 20: -7,9 + 21: -8,9 + 22: -8,8 + 23: -8,7 + 24: -8,6 + 25: -8,5 + 26: -8,4 + 27: -8,3 + 28: -7,3 + 29: -5,4 + 43: -5,9 + 416: 0,9 + 417: 0,10 + 418: 0,11 + 420: -2,11 + 421: -2,10 + 422: -2,9 + 423: -1,9 + 433: -1,11 + - node: + color: '#52B4E996' + id: OffsetOverlay + decals: + 473: 5,15 + 474: 6,15 + 475: 7,15 + 476: 8,15 + 477: 8,16 + - node: + color: '#8D1C9996' + id: OffsetOverlay + decals: + 1: -9,5 + 2: -9,6 + 3: -9,7 + 4: -9,9 + 5: -7,10 + 9: -4,7 + 10: -4,6 + 103: -4,9 + - node: + color: '#A4610696' + id: OffsetOverlay + decals: + 120: 7,6 + 121: 7,7 + 122: 9,7 + 123: 10,7 + 124: 11,7 + 125: 11,9 + 126: 10,9 + 665: -9,25 + 685: -7,16 + 686: -7,17 + 687: -8,24 + 688: -7,24 + 689: -6,24 + - node: + color: '#D4D4D428' + id: OffsetOverlay + decals: + 757: 1,17 + 758: 1,18 + 759: 2,18 + 760: 2,17 + 761: 2,16 + 762: 1,16 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale + decals: + 538: 5,18 + 539: 5,19 + 540: 5,20 + 541: 6,20 + 542: 7,20 + 543: 8,20 + 544: 9,20 + 662: -8,22 + 663: -8,23 + 664: -6,23 + 778: -3,18 + 779: -3,17 + 801: -2,19 + 802: -1,19 + 803: 0,19 + 804: 1,19 + 805: 2,19 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale180 + decals: + 531: 9,18 + 532: 8,18 + 533: 7,18 + 534: 6,18 + 535: 5,18 + 536: 9,19 + 537: 9,20 + 653: -6,22 + 654: -6,23 + 655: -8,22 + 786: -1,15 + 787: 0,15 + 788: 1,15 + 789: 2,15 + 790: 3,16 + 791: 3,18 + 792: 3,17 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale270 + decals: + 524: 9,18 + 525: 8,18 + 526: 7,18 + 527: 6,18 + 528: 5,18 + 529: 5,19 + 530: 5,20 + 656: -8,22 + 657: -8,23 + 658: -6,22 + 780: -3,17 + 781: -3,18 + 782: -1,15 + 783: 0,15 + 784: 1,15 + 785: 2,15 + - node: + color: '#D4D4D428' + id: QuarterTileOverlayGreyscale90 + decals: + 545: 9,18 + 546: 9,19 + 547: 9,20 + 548: 8,20 + 549: 7,20 + 550: 6,20 + 551: 5,20 + 659: -6,23 + 660: -6,22 + 661: -8,23 + 793: 3,16 + 794: 3,17 + 795: 3,18 + 796: 2,19 + 797: 1,19 + 798: 0,19 + 799: -1,19 + 800: -2,19 + - node: + color: '#8D1C99E9' + id: StandClearGreyscale + decals: + 444: -1,11 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale + decals: + 294: -2,6 + 298: 1,3 + 775: -3,19 + - node: + color: '#D4D4D431' + id: ThreeQuarterTileOverlayGreyscale + decals: + 628: -9,20 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 293: 0,2 + 299: 4,2 + 777: 3,15 + - node: + color: '#D4D4D431' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 629: -5,18 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 292: -2,2 + 297: 1,2 + - node: + color: '#D4D4D431' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 627: -9,18 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 295: 0,6 + 296: 4,3 + 776: 3,19 + - node: + color: '#D4D4D431' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 630: -5,20 + - node: + angle: -3.141592653589793 rad + color: '#FFFFFFFF' + id: WarnBox + decals: + 519: -1,22 + 520: -1,21 + 521: 1,21 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 178: 10,4 + 179: 10,5 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 168: 11,6 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 156: 8,8 + 170: 9,6 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 146: 8,3 + 175: 11,3 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 173: 9,3 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 163: 9,8 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 147: 8,3 + 158: 9,8 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 157: 8,8 + - node: + color: '#FFFFFFFF' + id: WarnEndE + decals: + 164: 11,8 + 340: 4,7 + 341: 4,5 + - node: + color: '#FFFFFFFF' + id: WarnEndN + decals: + 159: 9,9 + - node: + color: '#FFFFFFFF' + id: WarnEndW + decals: + 145: 7,3 + 335: 2,5 + 342: 2,7 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 152: 8,4 + 153: 8,5 + 154: 8,6 + 155: 8,7 + 176: 11,4 + 177: 11,5 + - node: + color: '#A46106F2' + id: WarnLineGreyscaleE + decals: + 751: -5,19 + - node: + color: '#A46106F2' + id: WarnLineGreyscaleN + decals: + 745: -8,20 + 746: -7,20 + 747: -6,20 + - node: + color: '#A46106F2' + id: WarnLineGreyscaleS + decals: + 748: -8,18 + 749: -7,18 + 750: -6,18 + - node: + color: '#A46106F2' + id: WarnLineGreyscaleW + decals: + 752: -9,19 + 753: -8,22 + 754: -8,23 + 755: -8,24 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 160: 9,8 + 161: 10,8 + 174: 10,3 + 338: 3,5 + 339: 3,7 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 148: 8,4 + 149: 8,5 + 150: 8,6 + 151: 8,7 + 171: 9,5 + 172: 9,4 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 162: 10,8 + 169: 10,6 + 336: 3,7 + 337: 3,5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinBox + decals: + 204: 2,9 + 205: 4,10 + 206: 5,10 + 207: 3,11 + 208: 3,12 + 228: 5,13 + 229: 6,13 + 607: 6,24 + 608: 7,24 + 609: 8,24 + 610: 9,24 + 611: 9,22 + 612: 10,22 + 613: 11,22 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WoodTrimThinBox + decals: + 586: 6,22 + 587: 7,22 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 192: 3,10 + 811: -2,16 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 806: -4,16 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 198: 6,9 + 227: 6,12 + 809: -2,15 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 185: 2,9 + 201: 3,9 + 202: 2,10 + 222: 4,11 + 226: 5,12 + 807: -4,15 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 224: 5,11 + 602: 11,23 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndN + decals: + 189: 2,12 + 196: 6,10 + 223: 4,12 + - node: + cleanable: True + color: '#FFFFFFFF' + id: WoodTrimThinEndS + decals: + 588: 8,22 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndW + decals: + 614: 6,23 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNe + decals: + 199: 2,10 + 200: 3,9 + 225: 4,11 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerNw + decals: + 197: 6,9 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 203: 3,10 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 190: 2,11 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 194: 4,9 + 195: 5,9 + 603: 10,23 + 604: 9,23 + 605: 8,23 + 606: 7,23 + 810: -3,16 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 182: 5,9 + 183: 4,9 + 615: 7,23 + 616: 8,23 + 617: 9,23 + 618: 10,23 + 808: -3,15 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 187: 2,11 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 65315 + 1: 8 + -1,0: + 0: 64648 + 1: 2 + 2: 1 + 0,1: + 0: 57297 + -1,1: + 0: 24015 + 0,2: + 0: 56785 + -1,2: + 0: 52688 + -1,3: + 0: 63641 + 0,3: + 0: 64972 + 0,4: + 0: 65535 + 0,-1: + 0: 8704 + 1: 32768 + 2: 1024 + 1,0: + 2: 1 + 0: 61696 + 1: 8 + 1,1: + 0: 39832 + 1,2: + 0: 30704 + 1,3: + 0: 61543 + 1,4: + 0: 65294 + 1,-1: + 2: 16384 + 2,0: + 1: 120 + 0: 61440 + 2,1: + 0: 65535 + 2,2: + 0: 255 + 1: 24576 + 2: 32768 + 2,3: + 1: 49168 + 0: 4096 + 2: 512 + 2,4: + 0: 49041 + 3,2: + 2: 256 + 3,-1: + 2: 4096 + -1,-1: + 0: 34816 + 1: 8192 + 2: 1024 + -3,-1: + 2: 4096 + -2,-1: + 2: 16384 + -3,0: + 1: 12482 + 0: 49152 + -3,1: + 1: 12339 + 0: 35456 + -3,2: + 1: 49203 + 2: 8448 + 0: 128 + -3,3: + 1: 24576 + 2: 2048 + -2,0: + 1: 18 + 0: 64512 + -2,1: + 0: 65535 + -2,2: + 0: 20223 + -2,3: + 0: 28876 + 1: 16 + -2,4: + 0: 65399 + -1,4: + 0: 65519 + 0,5: + 0: 13113 + 2: 32768 + -1,5: + 0: 34946 + 1: 256 + 2: 8192 + 0,6: + 2: 4 + 1,5: + 1: 256 + 0: 52238 + 1,6: + 2: 1056 + 0: 12 + 1: 2048 + 2,5: + 0: 65311 + 2,6: + 0: 34955 + 2: 4096 + 1: 8192 + 2,7: + 2: 4 + 1: 128 + 3,4: + 2: 1 + 0: 256 + 3,5: + 0: 1 + 3,7: + 2: 256 + -3,4: + 2: 1 + 0: 44832 + -3,5: + 0: 34831 + 1: 13072 + -3,6: + 1: 32819 + 0: 8328 + -3,7: + 2: 260 + 1: 32 + -2,5: + 0: 30591 + -2,6: + 0: 7 + 2: 5248 + 1: 512 + -1,6: + 2: 4 + 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: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: BecomesStation + id: Stratos + - type: ImplicitRoof +- proto: ADTBarAirlock + entities: + - uid: 1052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,13.5 + parent: 1 + - uid: 1053 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,13.5 + parent: 1 +- proto: ADTBathroom + entities: + - uid: 1054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,25.5 + parent: 1 +- proto: ADTSalvageAirlockGlass + entities: + - uid: 1055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,19.5 + parent: 1 + - uid: 1056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,18.5 + parent: 1 +- proto: AirAlarm + entities: + - uid: 418 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - type: DeviceList + devices: + - 1019 + - 893 + - 553 + - 554 + - 1003 + - 892 + - 552 + - 188 + - 1004 + - 888 + - 107 + - 1023 + - 913 + - 345 + - 347 + - uid: 1036 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,22.5 + parent: 1 + - type: DeviceList + devices: + - 81 + - 82 + - 918 + - 799 + - 798 + - 919 + - 80 + - 179 + - uid: 1039 + components: + - type: Transform + pos: 7.5,21.5 + parent: 1 + - type: DeviceList + devices: + - 89 + - 235 + - 819 + - 531 + - 532 + - 958 + - 835 + - 941 + - 814 + - 956 + - 373 + - 374 + - 434 + - 83 + - 947 + - 820 + - 953 + - 868 + - uid: 1040 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,14.5 + parent: 1 + - type: DeviceList + devices: + - 91 + - 535 + - 536 + - 531 + - 89 + - 235 + - 927 + - 800 + - 373 + - 179 + - 80 + - uid: 1041 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,2.5 + parent: 1 + - type: DeviceList + devices: + - 844 + - 983 + - 347 + - 498 +- proto: AirlockCommandGlass + entities: + - uid: 1057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,20.5 + parent: 1 +- proto: AirlockEngineering + entities: + - uid: 1037 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 1038 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 +- proto: AirlockExternal + entities: + - uid: 545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,6.5 + parent: 1 + - uid: 586 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 1031 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 1032 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 1044 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,18.5 + parent: 1 + - uid: 1045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,20.5 + parent: 1 + - uid: 1046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,18.5 + parent: 1 + - uid: 1047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,20.5 + parent: 1 +- proto: AirlockGlass + entities: + - uid: 1049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,18.5 + parent: 1 + - uid: 1050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,19.5 + parent: 1 + - uid: 1051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,21.5 + parent: 1 +- proto: AirlockGlassShuttle + entities: + - uid: 167 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,18.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,20.5 + parent: 1 + - uid: 313 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,20.5 + parent: 1 + - uid: 351 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 443 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,18.5 + parent: 1 +- proto: AirlockMedicalGlass + entities: + - uid: 1042 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,15.5 + parent: 1 + - uid: 1043 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,17.5 + parent: 1 +- proto: AirlockScience + entities: + - uid: 587 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 1030 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 +- proto: AirlockScienceGlass + entities: + - uid: 1033 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 1034 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 1035 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 1048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 1 +- proto: AirSensor + entities: + - uid: 1377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,15.5 + parent: 1 + - uid: 1416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 1 + - uid: 1417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,9.5 + parent: 1 + - uid: 1470 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,19.5 + parent: 1 + - uid: 1471 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,19.5 + parent: 1 +- proto: AmeController + entities: + - uid: 632 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 + - type: AmeController + injectionAmount: 4 + injecting: True + - type: ContainerContainer + containers: + fuelSlot: !type:ContainerSlot + showEnts: False + occludes: True + ent: 633 +- proto: AmeJar + entities: + - uid: 633 + components: + - type: Transform + parent: 632 + - type: Physics + canCollide: False +- proto: AmeShielding + entities: + - uid: 555 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 556 + components: + - type: Transform + pos: 10.5,4.5 + parent: 1 + - type: PointLight + radius: 2 + enabled: True + - uid: 557 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1 + - type: PointLight + radius: 2 + enabled: True + - uid: 558 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 + - uid: 559 + components: + - type: Transform + pos: 11.5,3.5 + parent: 1 + - uid: 560 + components: + - type: Transform + pos: 11.5,4.5 + parent: 1 + - uid: 561 + components: + - type: Transform + pos: 11.5,5.5 + parent: 1 + - uid: 562 + components: + - type: Transform + pos: 11.5,6.5 + parent: 1 + - uid: 563 + components: + - type: Transform + pos: 9.5,4.5 + parent: 1 + - uid: 564 + components: + - type: Transform + pos: 9.5,5.5 + parent: 1 + - uid: 565 + components: + - type: Transform + pos: 9.5,6.5 + parent: 1 + - uid: 566 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 +- proto: AmmoLoaderSmall + entities: + - uid: 616 + components: + - type: Transform + pos: 3.5,20.5 + parent: 1 + - type: ContainerContainer + containers: + ammo_loader: !type:Container + showEnts: False + occludes: True + ents: + - 617 + - type: DeviceLinkSource + linkedPorts: + 1478: + - - AmmoLoaderLoad + - SpaceArtilleryLoad + 1374: + - - AmmoLoaderLoad + - SpaceArtilleryLoad +- proto: APCBasic + entities: + - uid: 390 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,8.5 + parent: 1 + - uid: 1067 + components: + - type: Transform + pos: 8.5,10.5 + parent: 1 + - uid: 1171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 1 + - uid: 1458 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,14.5 + parent: 1 + - uid: 1489 + components: + - type: Transform + pos: 9.5,21.5 + parent: 1 + - uid: 1581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,21.5 + parent: 1 + - uid: 1686 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 87 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,18.5 + parent: 1 + - uid: 168 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,20.5 + parent: 1 + - uid: 169 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 230 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,24.5 + parent: 1 + - uid: 256 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,23.5 + parent: 1 + - uid: 419 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,22.5 + parent: 1 + - uid: 542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1 + - uid: 544 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 1 + - uid: 1728 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,18.5 + parent: 1 + - uid: 1729 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,20.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 21 + components: + - type: Transform + pos: -10.5,29.5 + parent: 1 + - uid: 70 + components: + - type: Transform + pos: 6.5,26.5 + parent: 1 + - uid: 90 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: -9.5,28.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 12.5,10.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: -5.5,-0.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 125 + components: + - type: Transform + pos: 3.5,23.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 5.5,25.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 4.5,22.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: -11.5,10.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: -7.5,13.5 + parent: 1 + - uid: 173 + components: + - type: Transform + pos: -9.5,11.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: -8.5,14.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: -10.5,15.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1 + - uid: 185 + components: + - type: Transform + pos: -10.5,5.5 + parent: 1 + - uid: 193 + components: + - type: Transform + pos: -8.5,27.5 + parent: 1 + - uid: 195 + components: + - type: Transform + pos: 11.5,29.5 + parent: 1 + - uid: 196 + components: + - type: Transform + pos: 12.5,30.5 + parent: 1 + - uid: 197 + components: + - type: Transform + pos: 7.5,26.5 + parent: 1 + - uid: 244 + components: + - type: Transform + pos: 12.5,-0.5 + parent: 1 + - uid: 253 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 258 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 264 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 265 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 266 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 274 + components: + - type: Transform + pos: 9.5,14.5 + parent: 1 + - uid: 275 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 + - uid: 276 + components: + - type: Transform + pos: 9.5,27.5 + parent: 1 + - uid: 282 + components: + - type: Transform + pos: -5.5,26.5 + parent: 1 + - uid: 288 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 306 + components: + - type: Transform + pos: 10.5,28.5 + parent: 1 + - uid: 338 + components: + - type: Transform + pos: 6.5,-0.5 + parent: 1 + - uid: 339 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 340 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 + - uid: 341 + components: + - type: Transform + pos: 8.5,27.5 + parent: 1 + - uid: 342 + components: + - type: Transform + pos: -4.5,25.5 + parent: 1 + - uid: 343 + components: + - type: Transform + pos: -3.5,22.5 + parent: 1 + - uid: 348 + components: + - type: Transform + pos: -11.5,9.5 + parent: 1 + - uid: 350 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 353 + components: + - type: Transform + pos: 11.5,15.5 + parent: 1 + - uid: 354 + components: + - type: Transform + pos: -6.5,26.5 + parent: 1 + - uid: 355 + components: + - type: Transform + pos: -7.5,27.5 + parent: 1 + - uid: 356 + components: + - type: Transform + pos: 12.5,16.5 + parent: 1 + - uid: 357 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 + - uid: 358 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 359 + components: + - type: Transform + pos: 2.5,24.5 + parent: 1 + - uid: 360 + components: + - type: Transform + pos: 11.5,11.5 + parent: 1 + - uid: 361 + components: + - type: Transform + pos: -9.5,15.5 + parent: 1 + - uid: 362 + components: + - type: Transform + pos: -11.5,16.5 + parent: 1 + - uid: 363 + components: + - type: Transform + pos: -11.5,30.5 + parent: 1 + - uid: 395 + components: + - type: Transform + pos: -11.5,-0.5 + parent: 1 + - uid: 398 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - uid: 402 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1 + - uid: 415 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 + - uid: 424 + components: + - type: Transform + pos: -2.5,23.5 + parent: 1 + - uid: 432 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 433 + components: + - type: Transform + pos: -1.5,24.5 + parent: 1 + - uid: 446 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 506 + components: + - type: Transform + pos: -11.5,7.5 + parent: 1 + - uid: 512 + components: + - type: Transform + pos: -11.5,8.5 + parent: 1 + - uid: 517 + components: + - type: Transform + pos: -10.5,7.5 + parent: 1 + - uid: 518 + components: + - type: Transform + pos: -10.5,8.5 + parent: 1 + - uid: 519 + components: + - type: Transform + pos: -10.5,9.5 + parent: 1 + - uid: 573 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 593 + components: + - type: Transform + pos: 4.5,0.5 + parent: 1 + - uid: 594 + components: + - type: Transform + pos: -3.5,0.5 + parent: 1 + - uid: 595 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 + - uid: 725 + components: + - type: Transform + pos: -11.5,21.5 + parent: 1 + - uid: 726 + components: + - type: Transform + pos: -11.5,22.5 + parent: 1 + - uid: 727 + components: + - type: Transform + pos: -11.5,23.5 + parent: 1 + - uid: 728 + components: + - type: Transform + pos: -11.5,24.5 + parent: 1 + - uid: 729 + components: + - type: Transform + pos: -11.5,25.5 + parent: 1 + - uid: 730 + components: + - type: Transform + pos: -10.5,22.5 + parent: 1 + - uid: 731 + components: + - type: Transform + pos: -10.5,23.5 + parent: 1 + - uid: 732 + components: + - type: Transform + pos: -10.5,24.5 + parent: 1 + - uid: 733 + components: + - type: Transform + pos: -10.5,25.5 + parent: 1 +- proto: Autolathe + entities: + - uid: 525 + components: + - type: Transform + pos: -8.5,5.5 + parent: 1 +- proto: AutolatheHyperConvection + entities: + - uid: 474 + components: + - type: Transform + pos: -11.5,8.5 + parent: 1 +- proto: BannerScience + entities: + - uid: 768 + components: + - type: Transform + pos: 0.5,14.5 + parent: 1 +- proto: BannerTL + entities: + - uid: 598 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1 + - uid: 599 + components: + - type: Transform + pos: -10.5,17.5 + parent: 1 +- proto: BarSignTheRune + entities: + - uid: 661 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1 +- proto: Beaker + entities: + - uid: 1392 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.39099,8.521433 + parent: 1 +- proto: Bed + entities: + - uid: 667 + components: + - type: Transform + pos: 7.5,24.5 + parent: 1 + - uid: 669 + components: + - type: Transform + pos: 9.5,24.5 + parent: 1 +- proto: BedsheetMedical + entities: + - uid: 654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,16.5 + parent: 1 + - uid: 655 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,16.5 + parent: 1 +- proto: BedsheetSpawner + entities: + - uid: 677 + components: + - type: Transform + pos: 7.5,24.5 + parent: 1 + - uid: 678 + components: + - type: Transform + pos: 9.5,24.5 + parent: 1 +- proto: BenchSofaCorpCorner + entities: + - uid: 610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,15.5 + parent: 1 +- proto: BenchSofaCorpLeft + entities: + - uid: 569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,16.5 + parent: 1 +- proto: BenchSofaCorpMiddle + entities: + - uid: 609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,15.5 + parent: 1 +- proto: BenchSofaCorpRight + entities: + - uid: 431 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,15.5 + parent: 1 +- proto: BenchSteelLeft + entities: + - uid: 711 + components: + - type: Transform + pos: -6.5,24.5 + parent: 1 +- proto: BenchSteelRight + entities: + - uid: 709 + components: + - type: Transform + pos: -5.5,24.5 + parent: 1 +- proto: BlastDoor + entities: + - uid: 112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,24.5 + parent: 1 + - uid: 233 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,23.5 + parent: 1 + - uid: 238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,22.5 + parent: 1 + - uid: 417 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 1 +- proto: BlastDoorOpen + entities: + - uid: 689 + components: + - type: Transform + pos: -0.5,24.5 + parent: 1 + - uid: 690 + components: + - type: Transform + pos: 0.5,24.5 + parent: 1 + - uid: 691 + components: + - type: Transform + pos: 1.5,24.5 + parent: 1 + - uid: 692 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,22.5 + parent: 1 + - uid: 693 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,23.5 + parent: 1 + - uid: 694 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,23.5 + parent: 1 + - uid: 695 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,22.5 + parent: 1 + - uid: 1105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,8.5 + parent: 1 + - uid: 1267 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 1268 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 1269 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 1270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,1.5 + parent: 1 + - uid: 1299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,5.5 + parent: 1 + - uid: 1300 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,7.5 + parent: 1 + - uid: 1301 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 1302 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 1472 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,18.5 + parent: 1 + - uid: 1473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,20.5 + parent: 1 +- proto: BlueprintLithograph + entities: + - uid: 165 + components: + - type: Transform + pos: -3.5,7.5 + parent: 1 +- proto: BookRandomStory + entities: + - uid: 1563 + components: + - type: Transform + pos: 9.640467,24.571884 + parent: 1 +- proto: BoozeDispenser + entities: + - uid: 1130 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 +- proto: BrokenBottle + entities: + - uid: 1140 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.6786532,10.388541 + parent: 1 +- proto: Brutepack + entities: + - uid: 1425 + components: + - type: Transform + parent: 1423 + - type: Physics + canCollide: False +- proto: ButtonFrameCaution + entities: + - uid: 1103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 1 + - uid: 1303 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 1538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,17.5 + parent: 1 + - uid: 1598 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,23.5 + parent: 1 +- proto: ButtonFrameJanitor + entities: + - uid: 1271 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - uid: 1297 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 1084 + components: + - type: Transform + pos: 8.5,10.5 + parent: 1 + - uid: 1085 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1 + - uid: 1086 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1 + - uid: 1087 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1 + - uid: 1088 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1 + - uid: 1089 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1 + - uid: 1090 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1 + - uid: 1091 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 1092 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 1093 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 1094 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 1095 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1 + - uid: 1096 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1 + - uid: 1097 + components: + - type: Transform + pos: 11.5,8.5 + parent: 1 + - uid: 1098 + components: + - type: Transform + pos: 9.5,3.5 + parent: 1 + - uid: 1099 + components: + - type: Transform + pos: 10.5,3.5 + parent: 1 + - uid: 1100 + components: + - type: Transform + pos: 11.5,3.5 + parent: 1 + - uid: 1134 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 1170 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 1173 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 1174 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 1175 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 + - uid: 1176 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 1177 + components: + - type: Transform + pos: 4.5,10.5 + parent: 1 + - uid: 1178 + components: + - type: Transform + pos: 5.5,10.5 + parent: 1 + - uid: 1179 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1 + - uid: 1180 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 + - uid: 1181 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 + - uid: 1183 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 1184 + components: + - type: Transform + pos: 2.5,11.5 + parent: 1 + - uid: 1199 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 1200 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 1201 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 1202 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - uid: 1203 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 1204 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - uid: 1205 + components: + - type: Transform + pos: 3.5,6.5 + parent: 1 + - uid: 1206 + components: + - type: Transform + pos: 4.5,6.5 + parent: 1 + - uid: 1207 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 + - uid: 1208 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 1209 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 1210 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 1211 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 1212 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - uid: 1213 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - uid: 1214 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 1215 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 1216 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 1217 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 1218 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - uid: 1219 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 1220 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 1221 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 1222 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 1223 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - uid: 1224 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 1225 + components: + - type: Transform + pos: -0.5,0.5 + parent: 1 + - uid: 1226 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 1227 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 1228 + components: + - type: Transform + pos: -1.5,6.5 + parent: 1 + - uid: 1229 + components: + - type: Transform + pos: -1.5,5.5 + parent: 1 + - uid: 1230 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 1325 + components: + - type: Transform + pos: -8.5,8.5 + parent: 1 + - uid: 1326 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 1327 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 1328 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 1329 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 1330 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 1331 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 1332 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 1333 + components: + - type: Transform + pos: -9.5,3.5 + parent: 1 + - uid: 1334 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 1335 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 1336 + components: + - type: Transform + pos: -10.5,5.5 + parent: 1 + - uid: 1337 + components: + - type: Transform + pos: -10.5,6.5 + parent: 1 + - uid: 1338 + components: + - type: Transform + pos: -10.5,7.5 + parent: 1 + - uid: 1339 + components: + - type: Transform + pos: -10.5,8.5 + parent: 1 + - uid: 1340 + components: + - type: Transform + pos: -11.5,8.5 + parent: 1 + - uid: 1341 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 1342 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 1343 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 1344 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 + - uid: 1345 + components: + - type: Transform + pos: -10.5,2.5 + parent: 1 + - uid: 1346 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 1347 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 1348 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 1349 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 1350 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 1351 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - uid: 1352 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - uid: 1353 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 1354 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - uid: 1355 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 1356 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 + - uid: 1357 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 1358 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1 + - uid: 1359 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 1360 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - uid: 1361 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 1362 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - uid: 1363 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 + - uid: 1407 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 1408 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 1409 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 1410 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - uid: 1411 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 1412 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 1413 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 1414 + components: + - type: Transform + pos: -0.5,9.5 + parent: 1 + - uid: 1415 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 1443 + components: + - type: Transform + pos: 6.5,15.5 + parent: 1 + - uid: 1444 + components: + - type: Transform + pos: 5.5,15.5 + parent: 1 + - uid: 1445 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 1446 + components: + - type: Transform + pos: 7.5,15.5 + parent: 1 + - uid: 1447 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1 + - uid: 1448 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1 + - uid: 1449 + components: + - type: Transform + pos: 5.5,16.5 + parent: 1 + - uid: 1459 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1 + - uid: 1497 + components: + - type: Transform + pos: 9.5,21.5 + parent: 1 + - uid: 1498 + components: + - type: Transform + pos: 9.5,20.5 + parent: 1 + - uid: 1499 + components: + - type: Transform + pos: 10.5,20.5 + parent: 1 + - uid: 1500 + components: + - type: Transform + pos: 11.5,20.5 + parent: 1 + - uid: 1501 + components: + - type: Transform + pos: 9.5,19.5 + parent: 1 + - uid: 1502 + components: + - type: Transform + pos: 9.5,18.5 + parent: 1 + - uid: 1503 + components: + - type: Transform + pos: 10.5,18.5 + parent: 1 + - uid: 1504 + components: + - type: Transform + pos: 11.5,18.5 + parent: 1 + - uid: 1505 + components: + - type: Transform + pos: 11.5,17.5 + parent: 1 + - uid: 1506 + components: + - type: Transform + pos: 9.5,22.5 + parent: 1 + - uid: 1507 + components: + - type: Transform + pos: 9.5,23.5 + parent: 1 + - uid: 1508 + components: + - type: Transform + pos: 8.5,23.5 + parent: 1 + - uid: 1509 + components: + - type: Transform + pos: 7.5,23.5 + parent: 1 + - uid: 1510 + components: + - type: Transform + pos: 6.5,23.5 + parent: 1 + - uid: 1511 + components: + - type: Transform + pos: 7.5,24.5 + parent: 1 + - uid: 1512 + components: + - type: Transform + pos: 10.5,23.5 + parent: 1 + - uid: 1513 + components: + - type: Transform + pos: 11.5,23.5 + parent: 1 + - uid: 1514 + components: + - type: Transform + pos: 11.5,24.5 + parent: 1 + - uid: 1515 + components: + - type: Transform + pos: 11.5,25.5 + parent: 1 + - uid: 1516 + components: + - type: Transform + pos: 11.5,26.5 + parent: 1 + - uid: 1517 + components: + - type: Transform + pos: 11.5,27.5 + parent: 1 + - uid: 1518 + components: + - type: Transform + pos: 7.5,22.5 + parent: 1 + - uid: 1519 + components: + - type: Transform + pos: 11.5,22.5 + parent: 1 + - uid: 1520 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1 + - uid: 1521 + components: + - type: Transform + pos: 7.5,19.5 + parent: 1 + - uid: 1522 + components: + - type: Transform + pos: 6.5,19.5 + parent: 1 + - uid: 1523 + components: + - type: Transform + pos: 5.5,19.5 + parent: 1 + - uid: 1524 + components: + - type: Transform + pos: 4.5,19.5 + parent: 1 + - uid: 1525 + components: + - type: Transform + pos: 5.5,20.5 + parent: 1 + - uid: 1526 + components: + - type: Transform + pos: 7.5,18.5 + parent: 1 + - uid: 1527 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1 + - uid: 1528 + components: + - type: Transform + pos: 2.5,15.5 + parent: 1 + - uid: 1529 + components: + - type: Transform + pos: 1.5,15.5 + parent: 1 + - uid: 1530 + components: + - type: Transform + pos: 0.5,15.5 + parent: 1 + - uid: 1531 + components: + - type: Transform + pos: 3.5,16.5 + parent: 1 + - uid: 1532 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1 + - uid: 1533 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 + - uid: 1643 + components: + - type: Transform + pos: -8.5,21.5 + parent: 1 + - uid: 1644 + components: + - type: Transform + pos: -8.5,20.5 + parent: 1 + - uid: 1645 + components: + - type: Transform + pos: -8.5,19.5 + parent: 1 + - uid: 1646 + components: + - type: Transform + pos: -8.5,18.5 + parent: 1 + - uid: 1647 + components: + - type: Transform + pos: -9.5,18.5 + parent: 1 + - uid: 1648 + components: + - type: Transform + pos: -10.5,18.5 + parent: 1 + - uid: 1649 + components: + - type: Transform + pos: -10.5,20.5 + parent: 1 + - uid: 1650 + components: + - type: Transform + pos: -8.5,22.5 + parent: 1 + - uid: 1651 + components: + - type: Transform + pos: -8.5,23.5 + parent: 1 + - uid: 1652 + components: + - type: Transform + pos: -8.5,24.5 + parent: 1 + - uid: 1653 + components: + - type: Transform + pos: -8.5,25.5 + parent: 1 + - uid: 1654 + components: + - type: Transform + pos: -9.5,24.5 + parent: 1 + - uid: 1655 + components: + - type: Transform + pos: -10.5,24.5 + parent: 1 + - uid: 1656 + components: + - type: Transform + pos: -10.5,25.5 + parent: 1 + - uid: 1657 + components: + - type: Transform + pos: -10.5,27.5 + parent: 1 + - uid: 1658 + components: + - type: Transform + pos: -7.5,24.5 + parent: 1 + - uid: 1659 + components: + - type: Transform + pos: -6.5,24.5 + parent: 1 + - uid: 1660 + components: + - type: Transform + pos: -5.5,24.5 + parent: 1 + - uid: 1661 + components: + - type: Transform + pos: -7.5,22.5 + parent: 1 + - uid: 1662 + components: + - type: Transform + pos: -6.5,22.5 + parent: 1 + - uid: 1663 + components: + - type: Transform + pos: -5.5,22.5 + parent: 1 + - uid: 1664 + components: + - type: Transform + pos: -7.5,20.5 + parent: 1 + - uid: 1665 + components: + - type: Transform + pos: -6.5,20.5 + parent: 1 + - uid: 1666 + components: + - type: Transform + pos: -5.5,20.5 + parent: 1 + - uid: 1667 + components: + - type: Transform + pos: -4.5,20.5 + parent: 1 + - uid: 1668 + components: + - type: Transform + pos: -7.5,18.5 + parent: 1 + - uid: 1669 + components: + - type: Transform + pos: -6.5,18.5 + parent: 1 + - uid: 1670 + components: + - type: Transform + pos: -5.5,18.5 + parent: 1 + - uid: 1671 + components: + - type: Transform + pos: -4.5,18.5 + parent: 1 + - uid: 1672 + components: + - type: Transform + pos: -7.5,17.5 + parent: 1 + - uid: 1673 + components: + - type: Transform + pos: -7.5,16.5 + parent: 1 + - uid: 1674 + components: + - type: Transform + pos: -5.5,16.5 + parent: 1 + - uid: 1675 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 + - uid: 1676 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 + - uid: 1677 + components: + - type: Transform + pos: -5.5,17.5 + parent: 1 + - uid: 1688 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 + - uid: 1689 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1 + - uid: 1690 + components: + - type: Transform + pos: -2.5,16.5 + parent: 1 + - uid: 1691 + components: + - type: Transform + pos: -2.5,17.5 + parent: 1 + - uid: 1692 + components: + - type: Transform + pos: -2.5,18.5 + parent: 1 + - uid: 1693 + components: + - type: Transform + pos: -2.5,19.5 + parent: 1 + - uid: 1694 + components: + - type: Transform + pos: -2.5,20.5 + parent: 1 + - uid: 1695 + components: + - type: Transform + pos: -1.5,18.5 + parent: 1 + - uid: 1696 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1 + - uid: 1697 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 + - uid: 1698 + components: + - type: Transform + pos: 1.5,18.5 + parent: 1 + - uid: 1699 + components: + - type: Transform + pos: 0.5,19.5 + parent: 1 + - uid: 1700 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1 + - uid: 1701 + components: + - type: Transform + pos: 0.5,21.5 + parent: 1 + - uid: 1702 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1 + - uid: 1703 + components: + - type: Transform + pos: 0.5,23.5 + parent: 1 + - uid: 1704 + components: + - type: Transform + pos: -0.5,22.5 + parent: 1 + - uid: 1705 + components: + - type: Transform + pos: 1.5,22.5 + parent: 1 + - uid: 1706 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1 + - uid: 1707 + components: + - type: Transform + pos: 2.5,19.5 + parent: 1 +- proto: CableApcStack1 + entities: + - uid: 1292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5298915,8.229239 + parent: 1 + - uid: 1293 + components: + - type: Transform + pos: -6.8423915,6.9167395 + parent: 1 + - uid: 1294 + components: + - type: Transform + pos: -5.7955165,6.7917395 + parent: 1 +- proto: CableHV + entities: + - uid: 1024 + components: + - type: Transform + pos: 10.5,7.5 + parent: 1 + - uid: 1025 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1 + - uid: 1026 + components: + - type: Transform + pos: 11.5,8.5 + parent: 1 + - uid: 1027 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 1028 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - uid: 1187 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 + - uid: 1188 + components: + - type: Transform + pos: 12.5,5.5 + parent: 1 + - uid: 1189 + components: + - type: Transform + pos: 11.5,5.5 + parent: 1 + - uid: 1190 + components: + - type: Transform + pos: 10.5,5.5 + parent: 1 + - uid: 1191 + components: + - type: Transform + pos: 10.5,6.5 + parent: 1 + - uid: 1678 + components: + - type: Transform + pos: 12.5,4.5 + parent: 1 +- proto: CableMV + entities: + - uid: 85 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 2.5,3.5 + parent: 1 + - uid: 326 + components: + - type: Transform + pos: 3.5,3.5 + parent: 1 + - uid: 388 + components: + - type: Transform + pos: 4.5,3.5 + parent: 1 + - uid: 1068 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - uid: 1069 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 1070 + components: + - type: Transform + pos: 10.5,8.5 + parent: 1 + - uid: 1071 + components: + - type: Transform + pos: 9.5,8.5 + parent: 1 + - uid: 1072 + components: + - type: Transform + pos: 8.5,8.5 + parent: 1 + - uid: 1073 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1 + - uid: 1074 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1 + - uid: 1075 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1 + - uid: 1076 + components: + - type: Transform + pos: 8.5,4.5 + parent: 1 + - uid: 1077 + components: + - type: Transform + pos: 8.5,3.5 + parent: 1 + - uid: 1078 + components: + - type: Transform + pos: 7.5,3.5 + parent: 1 + - uid: 1079 + components: + - type: Transform + pos: 6.5,3.5 + parent: 1 + - uid: 1080 + components: + - type: Transform + pos: 8.5,9.5 + parent: 1 + - uid: 1081 + components: + - type: Transform + pos: 8.5,10.5 + parent: 1 + - uid: 1082 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 1083 + components: + - type: Transform + pos: 7.5,9.5 + parent: 1 + - uid: 1166 + components: + - type: Transform + pos: 6.5,9.5 + parent: 1 + - uid: 1167 + components: + - type: Transform + pos: 5.5,9.5 + parent: 1 + - uid: 1168 + components: + - type: Transform + pos: 4.5,9.5 + parent: 1 + - uid: 1169 + components: + - type: Transform + pos: 3.5,9.5 + parent: 1 + - uid: 1172 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 1192 + components: + - type: Transform + pos: 1.5,3.5 + parent: 1 + - uid: 1193 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 1194 + components: + - type: Transform + pos: 0.5,3.5 + parent: 1 + - uid: 1195 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 1196 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 1197 + components: + - type: Transform + pos: -0.5,6.5 + parent: 1 + - uid: 1198 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 + - uid: 1312 + components: + - type: Transform + pos: -1.5,3.5 + parent: 1 + - uid: 1313 + components: + - type: Transform + pos: -2.5,3.5 + parent: 1 + - uid: 1314 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 1315 + components: + - type: Transform + pos: -4.5,3.5 + parent: 1 + - uid: 1316 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 + - uid: 1317 + components: + - type: Transform + pos: -6.5,3.5 + parent: 1 + - uid: 1318 + components: + - type: Transform + pos: -7.5,3.5 + parent: 1 + - uid: 1319 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - uid: 1320 + components: + - type: Transform + pos: -7.5,5.5 + parent: 1 + - uid: 1321 + components: + - type: Transform + pos: -7.5,6.5 + parent: 1 + - uid: 1322 + components: + - type: Transform + pos: -7.5,7.5 + parent: 1 + - uid: 1323 + components: + - type: Transform + pos: -7.5,8.5 + parent: 1 + - uid: 1324 + components: + - type: Transform + pos: -8.5,8.5 + parent: 1 + - uid: 1433 + components: + - type: Transform + pos: 3.5,11.5 + parent: 1 + - uid: 1434 + components: + - type: Transform + pos: 3.5,12.5 + parent: 1 + - uid: 1435 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - uid: 1436 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 1437 + components: + - type: Transform + pos: 3.5,15.5 + parent: 1 + - uid: 1438 + components: + - type: Transform + pos: 4.5,15.5 + parent: 1 + - uid: 1439 + components: + - type: Transform + pos: 5.5,15.5 + parent: 1 + - uid: 1440 + components: + - type: Transform + pos: 6.5,15.5 + parent: 1 + - uid: 1460 + components: + - type: Transform + pos: 7.5,15.5 + parent: 1 + - uid: 1461 + components: + - type: Transform + pos: 8.5,15.5 + parent: 1 + - uid: 1462 + components: + - type: Transform + pos: 8.5,14.5 + parent: 1 + - uid: 1490 + components: + - type: Transform + pos: 8.5,16.5 + parent: 1 + - uid: 1491 + components: + - type: Transform + pos: 8.5,17.5 + parent: 1 + - uid: 1492 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1 + - uid: 1493 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1 + - uid: 1494 + components: + - type: Transform + pos: 8.5,20.5 + parent: 1 + - uid: 1495 + components: + - type: Transform + pos: 9.5,20.5 + parent: 1 + - uid: 1496 + components: + - type: Transform + pos: 9.5,21.5 + parent: 1 + - uid: 1617 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 1618 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 1619 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - uid: 1620 + components: + - type: Transform + pos: 0.5,10.5 + parent: 1 + - uid: 1621 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - uid: 1622 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - uid: 1623 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 1624 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - uid: 1625 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - uid: 1626 + components: + - type: Transform + pos: -0.5,15.5 + parent: 1 + - uid: 1627 + components: + - type: Transform + pos: -1.5,15.5 + parent: 1 + - uid: 1628 + components: + - type: Transform + pos: -2.5,15.5 + parent: 1 + - uid: 1629 + components: + - type: Transform + pos: -2.5,16.5 + parent: 1 + - uid: 1630 + components: + - type: Transform + pos: -2.5,17.5 + parent: 1 + - uid: 1631 + components: + - type: Transform + pos: -2.5,18.5 + parent: 1 + - uid: 1632 + components: + - type: Transform + pos: -3.5,18.5 + parent: 1 + - uid: 1633 + components: + - type: Transform + pos: -4.5,18.5 + parent: 1 + - uid: 1634 + components: + - type: Transform + pos: -5.5,18.5 + parent: 1 + - uid: 1635 + components: + - type: Transform + pos: -6.5,18.5 + parent: 1 + - uid: 1636 + components: + - type: Transform + pos: -6.5,19.5 + parent: 1 + - uid: 1637 + components: + - type: Transform + pos: -6.5,20.5 + parent: 1 + - uid: 1638 + components: + - type: Transform + pos: -6.5,21.5 + parent: 1 + - uid: 1639 + components: + - type: Transform + pos: -6.5,22.5 + parent: 1 + - uid: 1640 + components: + - type: Transform + pos: -7.5,22.5 + parent: 1 + - uid: 1641 + components: + - type: Transform + pos: -8.5,22.5 + parent: 1 + - uid: 1642 + components: + - type: Transform + pos: -8.5,21.5 + parent: 1 + - uid: 1687 + components: + - type: Transform + pos: -2.5,14.5 + parent: 1 +- proto: CableTerminal + entities: + - uid: 1029 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,7.5 + parent: 1 +- proto: CardBoxBlack + entities: + - uid: 243 + components: + - type: Transform + pos: -2.3376667,16.671259 + parent: 1 +- proto: CarpetPurple + entities: + - uid: 589 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 590 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - uid: 682 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,23.5 + parent: 1 + - uid: 683 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,23.5 + parent: 1 + - uid: 684 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,23.5 + parent: 1 + - uid: 685 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,22.5 + parent: 1 + - uid: 1058 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 1 + - uid: 1059 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 1 + - uid: 1060 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 1 + - uid: 1061 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,12.5 + parent: 1 + - uid: 1062 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,13.5 + parent: 1 + - uid: 1063 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,13.5 + parent: 1 + - uid: 1064 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 1 + - uid: 1397 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 1398 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 1399 + components: + - type: Transform + pos: -1.5,11.5 + parent: 1 + - uid: 1552 + components: + - type: Transform + pos: 9.5,22.5 + parent: 1 + - uid: 1553 + components: + - type: Transform + pos: 10.5,22.5 + parent: 1 + - uid: 1554 + components: + - type: Transform + pos: 11.5,22.5 + parent: 1 + - uid: 1555 + components: + - type: Transform + pos: 9.5,24.5 + parent: 1 + - uid: 1556 + components: + - type: Transform + pos: 7.5,24.5 + parent: 1 + - uid: 1717 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,15.5 + parent: 1 + - uid: 1719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,15.5 + parent: 1 + - uid: 1720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,15.5 + parent: 1 + - uid: 1721 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,16.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 4 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,8.5 + parent: 1 + - uid: 104 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,24.5 + parent: 1 + - uid: 105 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,23.5 + parent: 1 + - uid: 106 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,24.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 10.5,1.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 3.5,0.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: -10.5,0.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: -6.5,0.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 11.5,0.5 + parent: 1 + - uid: 147 + components: + - type: Transform + pos: 9.5,27.5 + parent: 1 + - uid: 148 + components: + - type: Transform + pos: -3.5,22.5 + parent: 1 + - uid: 149 + components: + - type: Transform + pos: 11.5,29.5 + parent: 1 + - uid: 150 + components: + - type: Transform + pos: 11.5,15.5 + parent: 1 + - uid: 180 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - uid: 181 + components: + - type: Transform + pos: -9.5,11.5 + parent: 1 + - uid: 182 + components: + - type: Transform + pos: -10.5,3.5 + parent: 1 + - uid: 183 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 184 + components: + - type: Transform + pos: -9.5,1.5 + parent: 1 + - uid: 186 + components: + - type: Transform + pos: -11.5,4.5 + parent: 1 + - uid: 187 + components: + - type: Transform + pos: -7.5,13.5 + parent: 1 + - uid: 189 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 190 + components: + - type: Transform + pos: -11.5,3.5 + parent: 1 + - uid: 191 + components: + - type: Transform + pos: 7.5,0.5 + parent: 1 + - uid: 192 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 206 + components: + - type: Transform + pos: 7.5,26.5 + parent: 1 + - uid: 207 + components: + - type: Transform + pos: 4.5,22.5 + parent: 1 + - uid: 213 + components: + - type: Transform + pos: -10.5,29.5 + parent: 1 + - uid: 232 + components: + - type: Transform + pos: -9.5,15.5 + parent: 1 + - uid: 257 + components: + - type: Transform + pos: 10.5,15.5 + parent: 1 + - uid: 279 + components: + - type: Transform + pos: -8.5,27.5 + parent: 1 + - uid: 294 + components: + - type: Transform + pos: -7.5,1.5 + parent: 1 + - uid: 308 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 + - uid: 344 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 1 + - uid: 346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,25.5 + parent: 1 + - uid: 349 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + - uid: 372 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 + - uid: 380 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,8.5 + parent: 1 + - uid: 383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1 + - uid: 384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + - uid: 399 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,22.5 + parent: 1 + - uid: 400 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 1 + - uid: 403 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 1 + - uid: 412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,5.5 + parent: 1 + - uid: 421 + components: + - type: Transform + pos: -10.5,15.5 + parent: 1 + - uid: 422 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,22.5 + parent: 1 + - uid: 423 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,23.5 + parent: 1 + - uid: 437 + components: + - type: Transform + pos: 8.5,13.5 + parent: 1 + - uid: 449 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,7.5 + parent: 1 + - uid: 482 + components: + - type: Transform + pos: 8.5,1.5 + parent: 1 + - uid: 500 + components: + - type: Transform + pos: -6.5,26.5 + parent: 1 + - uid: 507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,8.5 + parent: 1 + - uid: 508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,5.5 + parent: 1 + - uid: 509 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,9.5 + parent: 1 + - uid: 515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,7.5 + parent: 1 + - uid: 516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,9.5 + parent: 1 + - uid: 537 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 + - uid: 571 + components: + - type: Transform + pos: -2.5,-0.5 + parent: 1 + - uid: 575 + components: + - type: Transform + pos: -2.5,0.5 + parent: 1 + - uid: 625 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,9.5 + parent: 1 + - uid: 626 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + - uid: 629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + - uid: 723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,21.5 + parent: 1 + - uid: 724 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,25.5 + parent: 1 + - uid: 743 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,17.5 + parent: 1 + - uid: 744 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,16.5 + parent: 1 + - uid: 745 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,15.5 + parent: 1 + - uid: 746 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,15.5 + parent: 1 + - uid: 747 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,15.5 + parent: 1 + - uid: 748 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,16.5 + parent: 1 + - uid: 749 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,17.5 + parent: 1 + - uid: 1231 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 1232 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 1233 + components: + - type: Transform + pos: 4.5,5.5 + parent: 1 + - uid: 1234 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 1235 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 1236 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 1367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,12.5 + parent: 1 + - uid: 1368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,12.5 + parent: 1 + - uid: 1431 + components: + - type: Transform + pos: -0.5,21.5 + parent: 1 + - uid: 1441 + components: + - type: Transform + pos: 1.5,21.5 + parent: 1 + - uid: 1474 + components: + - type: Transform + pos: -0.5,22.5 + parent: 1 +- proto: CatwalkSteelTile + entities: + - uid: 5 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,12.5 + parent: 1 + - uid: 67 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,24.5 + parent: 1 + - uid: 84 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - uid: 93 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - uid: 98 + components: + - type: Transform + pos: -11.5,18.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: -1.5,18.5 + parent: 1 + - uid: 108 + components: + - type: Transform + pos: -0.5,18.5 + parent: 1 + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,19.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1 + - uid: 217 + components: + - type: Transform + pos: -11.5,20.5 + parent: 1 + - uid: 219 + components: + - type: Transform + pos: -0.5,-1.5 + parent: 1 + - uid: 220 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - uid: 223 + components: + - type: Transform + pos: 12.5,18.5 + parent: 1 + - uid: 259 + components: + - type: Transform + pos: -3.5,18.5 + parent: 1 + - uid: 260 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1 + - uid: 262 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - uid: 281 + components: + - type: Transform + pos: 11.5,25.5 + parent: 1 + - uid: 292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,22.5 + parent: 1 + - uid: 299 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,9.5 + parent: 1 + - uid: 311 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 + - uid: 328 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - uid: 329 + components: + - type: Transform + pos: -0.5,16.5 + parent: 1 + - uid: 332 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,23.5 + parent: 1 + - uid: 334 + components: + - type: Transform + pos: 5.5,3.5 + parent: 1 + - uid: 336 + components: + - type: Transform + pos: -9.5,20.5 + parent: 1 + - uid: 364 + components: + - type: Transform + pos: -1.5,17.5 + parent: 1 + - uid: 379 + components: + - type: Transform + pos: 12.5,20.5 + parent: 1 + - uid: 393 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,19.5 + parent: 1 + - uid: 396 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - uid: 397 + components: + - type: Transform + pos: 8.5,21.5 + parent: 1 + - uid: 407 + components: + - type: Transform + pos: 10.5,18.5 + parent: 1 + - uid: 435 + components: + - type: Transform + pos: 10.5,20.5 + parent: 1 + - uid: 503 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,11.5 + parent: 1 + - uid: 529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1 + - uid: 530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,17.5 + parent: 1 + - uid: 533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + - uid: 534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + - uid: 540 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1 + - uid: 541 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 1 + - uid: 550 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - uid: 551 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - uid: 568 + components: + - type: Transform + pos: -5.5,19.5 + parent: 1 + - uid: 606 + components: + - type: Transform + pos: -0.5,3.5 + parent: 1 + - uid: 607 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - uid: 608 + components: + - type: Transform + pos: -0.5,5.5 + parent: 1 + - uid: 612 + components: + - type: Transform + pos: -0.5,17.5 + parent: 1 + - uid: 613 + components: + - type: Transform + pos: 0.5,16.5 + parent: 1 + - uid: 618 + components: + - type: Transform + pos: 8.5,19.5 + parent: 1 + - uid: 619 + components: + - type: Transform + pos: -7.5,19.5 + parent: 1 + - uid: 620 + components: + - type: Transform + pos: 7.5,19.5 + parent: 1 + - uid: 622 + components: + - type: Transform + pos: 6.5,19.5 + parent: 1 + - uid: 623 + components: + - type: Transform + pos: -6.5,19.5 + parent: 1 + - uid: 624 + components: + - type: Transform + pos: 4.5,18.5 + parent: 1 + - uid: 653 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,18.5 + parent: 1 + - uid: 664 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,14.5 + parent: 1 + - uid: 765 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 +- proto: CatwalkWhiteTile + entities: + - uid: 127 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - uid: 172 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 198 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - uid: 231 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - uid: 263 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - uid: 280 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 301 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - uid: 305 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - uid: 323 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - uid: 1396 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 +- proto: ChairOfficeLight + entities: + - uid: 591 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.8069744,9.83481 + parent: 1 + - uid: 651 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.64693475,9.894797 + parent: 1 + - uid: 1388 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.625365,6.6464334 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 640 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,22.5 + parent: 1 +- proto: ChairWood + entities: + - uid: 757 + components: + - type: Transform + pos: 2.4578226,10.543667 + parent: 1 + - uid: 758 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.3640726,9.559292 + parent: 1 +- proto: CheapLighter + entities: + - uid: 1603 + components: + - type: Transform + pos: -5.793867,24.291954 + parent: 1 +- proto: ChemistryHotplate + entities: + - uid: 1378 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - type: ItemPlacer + lastPlaceable: False + placedEntities: + - 1379 + - type: PlaceableSurface + isPlaceable: False +- proto: CigaretteSpent + entities: + - uid: 1146 + components: + - type: Transform + parent: 1145 + - type: Physics + canCollide: False + - uid: 1147 + components: + - type: Transform + parent: 1145 + - type: Physics + canCollide: False + - uid: 1150 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5536532,11.388541 + parent: 1 + - uid: 1151 + components: + - type: Transform + pos: 5.6161532,11.716666 + parent: 1 + - uid: 1164 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.9014473,12.776938 + parent: 1 + - uid: 1165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.1983223,11.745688 + parent: 1 + - uid: 1454 + components: + - type: Transform + pos: 8.068407,15.725557 + parent: 1 + - uid: 1455 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.172573,15.506807 + parent: 1 +- proto: CigarSpent + entities: + - uid: 1606 + components: + - type: Transform + pos: -5.047801,24.022882 + parent: 1 +- proto: CigPackSyndicate + entities: + - uid: 1605 + components: + - type: Transform + pos: -10.184652,27.178375 + parent: 1 +- proto: CircuitImprinter + entities: + - uid: 505 + components: + - type: Transform + pos: -3.5,6.5 + parent: 1 +- proto: ClosetJanitorBombFilled + entities: + - uid: 1261 + components: + - type: Transform + pos: 4.735949,5.5050025 + parent: 1 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 1262 + components: + - type: Transform + pos: 4.2880325,5.494586 + parent: 1 +- proto: ClothingEyesGlassesChemical + entities: + - uid: 1383 + components: + - type: Transform + parent: 1382 + - type: Physics + canCollide: False +- proto: ClothingNeckSciencemedal + entities: + - uid: 604 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.616579,27.2481 + parent: 1 +- proto: Cobweb1 + entities: + - uid: 1155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 1 +- proto: ComputerGunneryConsole + entities: + - uid: 567 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,22.5 + parent: 1 +- proto: ComputerTabletopAnalysisConsole + entities: + - uid: 761 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 +- proto: ComputerTabletopPowerMonitoring + entities: + - uid: 1065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 1 +- proto: ComputerTabletopResearchAndDevelopment + entities: + - uid: 762 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 +- proto: ComputerTabletopShuttle + entities: + - uid: 686 + components: + - type: Transform + pos: 0.5,23.5 + parent: 1 +- proto: ComputerTabletopStationRecords + entities: + - uid: 697 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,22.5 + parent: 1 +- proto: ComputerWallmountRadar + entities: + - uid: 716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,2.5 + parent: 1 + - uid: 1275 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 1405 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,9.5 + parent: 1 + - uid: 1536 + components: + - type: Transform + pos: 5.5,21.5 + parent: 1 + - uid: 1537 + components: + - type: Transform + pos: -4.5,21.5 + parent: 1 + - uid: 1724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,23.5 + parent: 1 +- proto: ConveyorBelt + entities: + - uid: 631 + components: + - type: Transform + pos: -7.5,16.5 + parent: 1 + - uid: 704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,22.5 + parent: 1 + - uid: 705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,23.5 + parent: 1 + - uid: 706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,24.5 + parent: 1 + - uid: 707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,25.5 + parent: 1 + - uid: 710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,15.5 + parent: 1 + - uid: 712 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,15.5 + parent: 1 + - uid: 713 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,15.5 + parent: 1 + - uid: 721 + components: + - type: Transform + pos: -7.5,17.5 + parent: 1 +- proto: CrateArtifactContainer + entities: + - uid: 1259 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - uid: 1260 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 +- proto: CrateEngineeringGear + entities: + - uid: 1244 + components: + - type: Transform + pos: 3.5,2.5 + parent: 1 +- proto: CrateEngineeringSecure + entities: + - uid: 621 + components: + - type: Transform + pos: -5.5,16.5 + parent: 1 + - uid: 1245 + components: + - type: Transform + pos: 4.5,2.5 + parent: 1 + - uid: 1682 + components: + - type: Transform + pos: 2.5,16.5 + parent: 1 +- proto: CrateScienceSecure + entities: + - uid: 588 + components: + - type: Transform + pos: -8.5,9.5 + parent: 1 + - uid: 1263 + components: + - type: Transform + pos: 2.5,5.5 + parent: 1 + - uid: 1264 + components: + - type: Transform + pos: 3.5,5.5 + parent: 1 + - uid: 1285 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 +- proto: CrateSecure + entities: + - uid: 1485 + components: + - type: Transform + pos: 6.5,20.5 + parent: 1 + - uid: 1488 + components: + - type: Transform + pos: 5.5,20.5 + parent: 1 + - uid: 1679 + components: + - type: Transform + pos: 1.5,17.5 + parent: 1 +- proto: CryogenicSleepUnit + entities: + - uid: 228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,16.5 + parent: 1 +- proto: CurtainsBlackOpen + entities: + - uid: 675 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,24.5 + parent: 1 + - uid: 676 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,24.5 + parent: 1 +- proto: CurtainsCyanOpen + entities: + - uid: 674 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,16.5 + parent: 1 +- proto: CurtainsWhiteOpen + entities: + - uid: 1566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,27.5 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 1428 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,16.5 + parent: 1 +- proto: DogBed + entities: + - uid: 1560 + components: + - type: Transform + pos: 11.5,22.5 + parent: 1 +- proto: DresserFilled + entities: + - uid: 699 + components: + - type: Transform + pos: 8.5,24.5 + parent: 1 + - uid: 700 + components: + - type: Transform + pos: 6.5,24.5 + parent: 1 +- proto: DrinkBeerCan + entities: + - uid: 1389 + components: + - type: Transform + pos: -6.094115,6.0370584 + parent: 1 + - uid: 1390 + components: + - type: Transform + pos: -5.937865,6.1620584 + parent: 1 + - uid: 1456 + components: + - type: Transform + pos: 8.24549,15.256807 + parent: 1 +- proto: DrinkHotCoffee + entities: + - uid: 1379 + components: + - type: Transform + pos: -1.5285258,9.877875 + parent: 1 + - type: CollisionWake + enabled: False + - uid: 1487 + components: + - type: Transform + pos: 1.3335705,23.092533 + parent: 1 +- proto: DrinkIcedBeerGlass + entities: + - uid: 1148 + components: + - type: Transform + pos: 4.1942782,12.451041 + parent: 1 + - uid: 1149 + components: + - type: Transform + pos: 4.7724032,11.357291 + parent: 1 +- proto: DrinkKiraSpecial + entities: + - uid: 603 + components: + - type: Transform + pos: -10.84896,27.737326 + parent: 1 + - uid: 1141 + components: + - type: Transform + pos: 2.7880282,9.388541 + parent: 1 + - uid: 1142 + components: + - type: Transform + pos: 2.2411532,9.810416 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 1109 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 1110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1 + - uid: 1125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,4.5 + parent: 1 + - uid: 1154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,9.5 + parent: 1 + - uid: 1250 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - uid: 1253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,5.5 + parent: 1 + - uid: 1254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + - uid: 1265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 1 + - uid: 1308 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 1 + - uid: 1309 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 1 + - uid: 1310 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,9.5 + parent: 1 + - uid: 1311 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - uid: 1404 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 1 + - uid: 1468 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,19.5 + parent: 1 + - uid: 1475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,19.5 + parent: 1 + - uid: 1484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,21.5 + parent: 1 + - uid: 1540 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,18.5 + parent: 1 + - uid: 1571 + components: + - type: Transform + pos: 8.5,24.5 + parent: 1 + - uid: 1572 + components: + - type: Transform + pos: 6.5,24.5 + parent: 1 + - uid: 1592 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,16.5 + parent: 1 + - uid: 1593 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,18.5 + parent: 1 + - uid: 1594 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,22.5 + parent: 1 + - uid: 1713 + components: + - type: Transform + pos: -2.5,20.5 + parent: 1 + - uid: 1714 + components: + - type: Transform + pos: 3.5,20.5 + parent: 1 + - uid: 1715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 1 +- proto: ExosuitFabricator + entities: + - uid: 226 + components: + - type: Transform + pos: -8.5,7.5 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 1122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,2.5 + parent: 1 + - uid: 1135 + components: + - type: Transform + pos: 1.5,11.5 + parent: 1 + - uid: 1274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,4.5 + parent: 1 + - uid: 1286 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 1 + - uid: 1535 + components: + - type: Transform + pos: 6.5,21.5 + parent: 1 + - uid: 1591 + components: + - type: Transform + pos: -4.5,17.5 + parent: 1 + - uid: 1708 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,20.5 + parent: 1 +- proto: FaxMachineShip + entities: + - uid: 687 + components: + - type: Transform + pos: -0.5,23.5 + parent: 1 +- proto: Firelock + entities: + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,18.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1040 + - 1036 + - uid: 81 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,18.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1036 + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,20.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1036 + - uid: 83 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,18.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1039 + - uid: 89 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,18.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1040 + - 1039 + - uid: 91 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,13.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1040 + - uid: 107 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 418 + - uid: 179 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,19.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1040 + - 1036 + - uid: 188 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 418 + - uid: 235 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,19.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1040 + - 1039 + - uid: 345 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 418 + - uid: 347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 418 + - 1041 + - uid: 373 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,20.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1040 + - 1039 + - uid: 374 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,21.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1039 + - uid: 375 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,25.5 + parent: 1 + - uid: 434 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,20.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1039 + - uid: 498 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1041 + - uid: 531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1040 + - 1039 + - uid: 532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,17.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1039 + - uid: 535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,13.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1040 + - uid: 536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,13.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1040 + - uid: 552 + components: + - type: Transform + pos: 1.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 418 + - uid: 553 + components: + - type: Transform + pos: -3.5,3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 418 + - uid: 554 + components: + - type: Transform + pos: -3.5,4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 418 +- proto: FirelockEdge + entities: + - uid: 634 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 + - uid: 1157 + components: + - type: Transform + pos: 4.5,11.5 + parent: 1 + - uid: 1158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 1 + - uid: 1159 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1 + - uid: 1160 + components: + - type: Transform + pos: 5.5,11.5 + parent: 1 + - uid: 1161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 1 +- proto: FloorDrain + entities: + - uid: 644 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 + - type: Fixtures + fixtures: {} + - uid: 1564 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,26.5 + parent: 1 + - type: Fixtures + fixtures: {} +- proto: FoodSoupNettle + entities: + - uid: 1684 + components: + - type: Transform + pos: -1.3347578,16.536722 + parent: 1 +- proto: ForgeAmmoDrum20mmBase + entities: + - uid: 617 + components: + - type: Transform + parent: 616 + - type: Physics + canCollide: False + - uid: 1726 + components: + - type: Transform + pos: 1.6340184,18.522455 + parent: 1 + - uid: 1727 + components: + - type: Transform + pos: 1.3215184,18.459955 + parent: 1 +- proto: Fork + entities: + - uid: 1685 + components: + - type: Transform + pos: -1.689445,16.561182 + parent: 1 +- proto: GasMixerOnFlipped + entities: + - uid: 987 + components: + - type: Transform + pos: 8.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasOutletInjector + entities: + - uid: 547 + components: + - type: Transform + pos: -4.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' +- proto: GasPassiveVent + entities: + - uid: 579 + components: + - type: Transform + pos: -5.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 917 + components: + - type: Transform + pos: -10.5,4.5 + parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 922 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 928 + components: + - type: Transform + pos: -2.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 939 + components: + - type: Transform + pos: 6.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 952 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 957 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 960 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 962 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 963 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 974 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 975 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 980 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 984 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 990 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 999 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1000 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1006 + components: + - type: Transform + pos: 2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1008 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1010 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeBendAlt1 + entities: + - uid: 805 + components: + - type: Transform + pos: -5.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 806 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 808 + components: + - type: Transform + pos: -1.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 809 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 816 + components: + - type: Transform + pos: 0.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 822 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 823 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 824 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 836 + components: + - type: Transform + pos: 3.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 838 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 847 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 850 + components: + - type: Transform + pos: 6.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 851 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 852 + components: + - type: Transform + pos: 9.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 853 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 854 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 855 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 869 + components: + - type: Transform + pos: 8.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 874 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 884 + components: + - type: Transform + pos: 0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 891 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 894 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 895 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 914 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 915 + components: + - type: Transform + pos: 1.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeFourway + entities: + - uid: 934 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 944 + components: + - type: Transform + pos: 8.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeFourwayAlt1 + entities: + - uid: 815 + components: + - type: Transform + pos: 0.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 887 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeStraight + entities: + - uid: 780 + components: + - type: Transform + pos: -5.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 781 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 782 + components: + - type: Transform + pos: -5.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 783 + components: + - type: Transform + pos: -5.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 784 + components: + - type: Transform + pos: -5.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 785 + components: + - type: Transform + pos: -5.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 786 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 787 + components: + - type: Transform + pos: -5.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 788 + components: + - type: Transform + pos: -5.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 789 + components: + - type: Transform + pos: -4.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 790 + components: + - type: Transform + pos: -4.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 791 + components: + - type: Transform + pos: -4.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 792 + components: + - type: Transform + pos: -4.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 793 + components: + - type: Transform + pos: -4.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 794 + components: + - type: Transform + pos: -4.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 795 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 796 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 797 + components: + - type: Transform + pos: -4.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 923 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 924 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 925 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 933 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 935 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 936 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 940 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 942 + components: + - type: Transform + pos: 6.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 943 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 946 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 948 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 949 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 950 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 951 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 954 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 955 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 959 + components: + - type: Transform + pos: 8.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 966 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 967 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 968 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 969 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 970 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 971 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 972 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 973 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 976 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 977 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 978 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 979 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 982 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 985 + components: + - type: Transform + pos: 8.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 986 + components: + - type: Transform + pos: 8.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 991 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 992 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 993 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 994 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 995 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 996 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1001 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1002 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1007 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1012 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1013 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1014 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1015 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1016 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1017 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1020 + components: + - type: Transform + pos: -0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1021 + components: + - type: Transform + pos: -0.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1022 + components: + - type: Transform + pos: -0.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraightAlt1 + entities: + - uid: 801 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 802 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 803 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 804 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 810 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 811 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 812 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 817 + components: + - type: Transform + pos: 0.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 818 + components: + - type: Transform + pos: 0.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 825 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 826 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 827 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 828 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 830 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 831 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 832 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 839 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 840 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 842 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 843 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 845 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 846 + components: + - type: Transform + pos: 3.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 849 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 856 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 857 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 858 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 859 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 860 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 861 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 862 + components: + - type: Transform + pos: 6.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 863 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 870 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,23.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 871 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,22.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 872 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,21.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 873 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,20.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 875 + components: + - type: Transform + pos: -0.5,16.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 876 + components: + - type: Transform + pos: -0.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 877 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 878 + components: + - type: Transform + pos: -0.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 879 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 880 + components: + - type: Transform + pos: -0.5,11.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 881 + components: + - type: Transform + pos: -0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 885 + components: + - type: Transform + pos: 0.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 886 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 889 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 890 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 896 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 897 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 898 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 900 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 901 + components: + - type: Transform + pos: -6.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 902 + components: + - type: Transform + pos: -6.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 903 + components: + - type: Transform + pos: -6.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 904 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 905 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 906 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 907 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 908 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 909 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 910 + components: + - type: Transform + pos: 0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 911 + components: + - type: Transform + pos: 0.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 916 + components: + - type: Transform + pos: 1.5,1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeTJunction + entities: + - uid: 920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 938 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 961 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 964 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 981 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 997 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1005 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1009 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1011 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeTJunctionAlt1 + entities: + - uid: 807 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 813 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 821 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,18.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 829 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,19.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 834 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 837 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,15.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 848 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,12.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 882 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 899 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 912 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPort + entities: + - uid: 776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,2.5 + parent: 1 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 988 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 989 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,4.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPressurePump + entities: + - uid: 778 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,3.5 + parent: 1 + - uid: 779 + components: + - type: Transform + pos: -5.5,3.5 + parent: 1 +- proto: GasVentPump + entities: + - uid: 918 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,18.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1036 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 919 + components: + - type: Transform + pos: -4.5,20.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1036 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 927 + components: + - type: Transform + pos: 1.5,19.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1040 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,20.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1039 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 947 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,18.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1039 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 953 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,23.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1039 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 956 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,21.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1039 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,16.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1039 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 965 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 983 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1041 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 998 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1003 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 418 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1004 + components: + - type: Transform + pos: 0.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 418 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1019 + components: + - type: Transform + pos: -7.5,4.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 418 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 1023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 418 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 798 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,18.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1036 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 799 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,20.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1036 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 800 + components: + - type: Transform + pos: -0.5,19.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1040 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 814 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,21.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1039 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 819 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,18.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1039 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 820 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,20.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1039 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 833 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 835 + components: + - type: Transform + pos: 6.5,16.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1039 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 844 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1041 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 868 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,23.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 1039 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 883 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 1 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 888 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 418 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 892 + components: + - type: Transform + pos: 2.5,7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 418 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 893 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,8.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 418 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' + - uid: 913 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 418 + - type: AtmosPipeLayers + pipeLayer: Secondary + - type: AtmosPipeColor + color: '#990000FF' +- proto: Gauze1 + entities: + - uid: 1424 + components: + - type: Transform + parent: 1423 + - type: Stack + count: 3 + - type: Physics + canCollide: False +- proto: GeneratorWallmountAPU + entities: + - uid: 1185 + components: + - type: Transform + pos: 12.5,6.5 + parent: 1 + - uid: 1186 + components: + - type: Transform + pos: 12.5,5.5 + parent: 1 +- proto: GravityGeneratorMini + entities: + - uid: 630 + components: + - type: Transform + pos: 7.5,7.5 + parent: 1 +- proto: Grille + entities: + - uid: 102 + components: + - type: Transform + pos: 12.5,19.5 + parent: 1 + - uid: 103 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 + - uid: 164 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 234 + components: + - type: Transform + pos: -0.5,24.5 + parent: 1 + - uid: 236 + components: + - type: Transform + pos: 2.5,23.5 + parent: 1 + - uid: 237 + components: + - type: Transform + pos: 1.5,24.5 + parent: 1 + - uid: 239 + components: + - type: Transform + pos: -9.5,19.5 + parent: 1 + - uid: 241 + components: + - type: Transform + pos: 2.5,22.5 + parent: 1 + - uid: 242 + components: + - type: Transform + pos: 0.5,24.5 + parent: 1 + - uid: 303 + components: + - type: Transform + pos: -11.5,19.5 + parent: 1 + - uid: 314 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 401 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 441 + components: + - type: Transform + pos: -1.5,23.5 + parent: 1 + - uid: 442 + components: + - type: Transform + pos: -1.5,22.5 + parent: 1 + - uid: 499 + components: + - type: Transform + pos: 10.5,19.5 + parent: 1 + - uid: 522 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,5.5 + parent: 1 + - uid: 543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 1 + - uid: 572 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - uid: 576 + components: + - type: Transform + pos: -3.5,11.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 113 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,23.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: -2.5,23.5 + parent: 1 + - uid: 439 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,24.5 + parent: 1 + - uid: 440 + components: + - type: Transform + pos: -1.5,24.5 + parent: 1 +- proto: GunneryServerLow + entities: + - uid: 429 + components: + - type: Transform + pos: 7.5,6.5 + parent: 1 + - type: Battery + startingCharge: 0 + - type: ApcPowerReceiver + powerLoad: 5 +- proto: Gyroscope + entities: + - uid: 27 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 751 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,20.5 + parent: 1 + - uid: 1372 + components: + - type: Transform + pos: -7.5,13.5 + parent: 1 +- proto: HandheldArtifactContainer + entities: + - uid: 1257 + components: + - type: Transform + pos: 4.6213655,7.463336 + parent: 1 + - uid: 1258 + components: + - type: Transform + pos: 4.5119905,7.635211 + parent: 1 +- proto: HospitalCurtainsOpen + entities: + - uid: 665 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,16.5 + parent: 1 + - uid: 666 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,16.5 + parent: 1 +- proto: JukeboxWallmountShip + entities: + - uid: 1133 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,12.5 + parent: 1 +- proto: KitchenMicrowave + entities: + - uid: 1547 + components: + - type: Transform + pos: 6.5,22.5 + parent: 1 +- proto: KitchenReagentGrinder + entities: + - uid: 1393 + components: + - type: Transform + pos: -6.5,8.5 + parent: 1 +- proto: LampGold + entities: + - uid: 1562 + components: + - type: Transform + pos: 6.497203,24.779804 + parent: 1 +- proto: LargeBeaker + entities: + - uid: 1391 + components: + - type: Transform + pos: -5.719115,8.833933 + parent: 1 +- proto: LockerResearchDirectorFilledHardsuit + entities: + - uid: 650 + components: + - type: Transform + pos: -1.7354579,11.526087 + parent: 1 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 1582 + components: + - type: Transform + pos: -7.262024,24.505592 + parent: 1 +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 1585 + components: + - type: Transform + pos: -7.755913,24.505592 + parent: 1 +- proto: LockerWallColorMedical + entities: + - uid: 1418 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,14.5 + parent: 1 + - uid: 1450 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,14.5 + parent: 1 +- proto: LockerWallEVAColorSalvageFilled + entities: + - uid: 1583 + components: + - type: Transform + pos: -6.5,25.5 + parent: 1 + - uid: 1584 + components: + - type: Transform + pos: -5.5,25.5 + parent: 1 +- proto: LockerWallEVAColorScientistFilled + entities: + - uid: 1481 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,21.5 + parent: 1 + - uid: 1482 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,21.5 + parent: 1 +- proto: LockerWallMaterialsFuelAmeJarFilled + entities: + - uid: 1066 + components: + - type: Transform + pos: 9.5,10.5 + parent: 1 +- proto: MachineArtifactAnalyzer + entities: + - uid: 578 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 +- proto: MachineArtifactCrusher + entities: + - uid: 767 + components: + - type: Transform + pos: 5.5,6.5 + parent: 1 +- proto: MachineFrame + entities: + - uid: 79 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,4.5 + parent: 1 + - uid: 763 + components: + - type: Transform + pos: -5.5,5.5 + parent: 1 + - uid: 764 + components: + - type: Transform + pos: -6.5,7.5 + parent: 1 + - uid: 1255 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 1 + - uid: 1256 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 1 + - uid: 1543 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,20.5 + parent: 1 + - uid: 1680 + components: + - type: Transform + pos: 2.5,18.5 + parent: 1 + - uid: 1681 + components: + - type: Transform + pos: 1.5,16.5 + parent: 1 +- proto: MachineMaterialSilo + entities: + - uid: 641 + components: + - type: Transform + pos: -5.5,15.5 + parent: 1 +- proto: MaterialReclaimer + entities: + - uid: 703 + components: + - type: Transform + pos: -10.5,25.5 + parent: 1 +- proto: MedicalBed + entities: + - uid: 642 + components: + - type: Transform + pos: 6.5,16.5 + parent: 1 + - uid: 643 + components: + - type: Transform + pos: 7.5,16.5 + parent: 1 +- proto: Mirror + entities: + - uid: 647 + components: + - type: Transform + pos: 0.5,12.5 + parent: 1 + - uid: 1565 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,26.5 + parent: 1 +- proto: Multitool + entities: + - uid: 1296 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5455165,6.606305 + parent: 1 +- proto: NFAshtray + entities: + - uid: 1145 + components: + - type: Transform + pos: 5.6005282,11.326041 + parent: 1 + - type: Storage + storedItems: + 1146: + position: 0,0 + _rotation: South + 1147: + position: 1,0 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1146 + - 1147 + - uid: 1604 + components: + - type: Transform + pos: -5.170107,23.827192 + parent: 1 +- proto: NFHolopadShip + entities: + - uid: 696 + components: + - type: Transform + pos: 0.5,21.5 + parent: 1 +- proto: NFLockerScienceFilled + entities: + - uid: 592 + components: + - type: Transform + pos: -3.2600994,9.537935 + parent: 1 + - uid: 649 + components: + - type: Transform + pos: -1.2706952,11.526087 + parent: 1 +- proto: NFMagnetBoxOre + entities: + - uid: 722 + components: + - type: Transform + pos: -6.5,15.5 + parent: 1 + - type: Conveyed +- proto: NFPosterLegitMothPlease + entities: + - uid: 1132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,8.5 + parent: 1 +- proto: NitrogenCanister + entities: + - uid: 638 + components: + - type: Transform + anchored: True + pos: 7.5,5.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: Ointment1 + entities: + - uid: 1426 + components: + - type: Transform + parent: 1423 + - type: Stack + count: 2 + - type: Physics + canCollide: False + - uid: 1427 + components: + - type: Transform + parent: 1423 + - type: Physics + canCollide: False +- proto: OreProcessor + entities: + - uid: 736 + components: + - type: Transform + pos: -7.5,16.5 + parent: 1 +- proto: OxygenCanister + entities: + - uid: 639 + components: + - type: Transform + anchored: True + pos: 7.5,4.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: PaperBin5 + entities: + - uid: 605 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,23.5 + parent: 1 + - uid: 652 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.4908459,10.390137 + parent: 1 +- proto: PartRodMetal1 + entities: + - uid: 1370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.7446346,12.532458 + parent: 1 + - uid: 1371 + components: + - type: Transform + pos: -3.7290096,12.626208 + parent: 1 +- proto: Pen + entities: + - uid: 1380 + components: + - type: Transform + pos: -1.6691508,10.784125 + parent: 1 + - uid: 1381 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.2785258,10.346625 + parent: 1 + - uid: 1486 + components: + - type: Transform + pos: 1.7398205,23.144617 + parent: 1 +- proto: Pickaxe + entities: + - uid: 772 + components: + - type: Transform + parent: 702 + - type: Physics + canCollide: False + - uid: 773 + components: + - type: Transform + parent: 702 + - type: Physics + canCollide: False +- proto: PlushieMoffRandom + entities: + - uid: 602 + components: + - type: Transform + pos: -10.310814,27.725094 + parent: 1 + - uid: 1143 + components: + - type: Transform + pos: 3.3505282,9.466666 + parent: 1 + - uid: 1144 + components: + - type: Transform + pos: 2.4599032,10.529166 + parent: 1 + - uid: 1442 + components: + - type: Transform + pos: -5.5245886,6.462593 + parent: 1 + - uid: 1453 + components: + - type: Transform + pos: 8.516323,15.49639 + parent: 1 + - uid: 1601 + components: + - type: Transform + pos: -5.4900694,24.463184 + parent: 1 + - uid: 1683 + components: + - type: Transform + pos: -1.5344529,15.500451 + parent: 1 +- proto: PosterContrabandHighEffectEngineering + entities: + - uid: 1117 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 +- proto: PosterContrabandMoth + entities: + - uid: 601 + components: + - type: Transform + pos: -11.5,27.5 + parent: 1 +- proto: PosterLegitHotDonkExplosion + entities: + - uid: 1546 + components: + - type: Transform + pos: 5.5,22.5 + parent: 1 +- proto: PosterLegitSafetyMothDelam + entities: + - uid: 1602 + components: + - type: Transform + pos: -9.5,25.5 + parent: 1 +- proto: PosterLegitSafetyMothEpi + entities: + - uid: 1430 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,14.5 + parent: 1 +- proto: PosterLegitSafetyMothHardhat + entities: + - uid: 775 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,9.5 + parent: 1 +- proto: PosterLegitSafetyMothMeth + entities: + - uid: 1136 + components: + - type: Transform + pos: 1.5,10.5 + parent: 1 +- proto: PottedPlant1 + entities: + - uid: 1545 + components: + - type: Transform + pos: 10.5,23.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 681 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 1 + - uid: 1101 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 + - uid: 1153 + components: + - type: Transform + pos: 5.5,13.5 + parent: 1 + - uid: 1243 + components: + - type: Transform + pos: 3.5,7.5 + parent: 1 + - uid: 1247 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 1 + - uid: 1266 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 1 + - uid: 1277 + components: + - type: Transform + pos: -3.5,13.5 + parent: 1 + - uid: 1279 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 1 + - uid: 1280 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,6.5 + parent: 1 + - uid: 1385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,10.5 + parent: 1 + - uid: 1403 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,10.5 + parent: 1 + - uid: 1406 + components: + - type: Transform + pos: -8.5,3.5 + parent: 1 + - uid: 1429 + components: + - type: Transform + pos: 5.5,16.5 + parent: 1 + - uid: 1476 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,19.5 + parent: 1 + - uid: 1477 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,19.5 + parent: 1 + - uid: 1483 + components: + - type: Transform + pos: 0.5,23.5 + parent: 1 + - uid: 1539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,18.5 + parent: 1 + - uid: 1541 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,18.5 + parent: 1 + - uid: 1573 + components: + - type: Transform + pos: 11.5,27.5 + parent: 1 + - uid: 1574 + components: + - type: Transform + pos: 10.5,23.5 + parent: 1 + - uid: 1579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,18.5 + parent: 1 + - uid: 1580 + components: + - type: Transform + pos: -8.5,20.5 + parent: 1 + - uid: 1710 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,15.5 + parent: 1 + - uid: 1711 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,16.5 + parent: 1 + - uid: 1712 + components: + - type: Transform + pos: 1.5,19.5 + parent: 1 +- proto: PoweredlightCyan + entities: + - uid: 1419 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,15.5 + parent: 1 +- proto: PoweredlightOrange + entities: + - uid: 1102 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 1 + - uid: 1111 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 1 + - uid: 1119 + components: + - type: Transform + pos: -10.5,27.5 + parent: 1 + - uid: 1152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 1 + - uid: 1575 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,22.5 + parent: 1 + - uid: 1576 + components: + - type: Transform + pos: -8.5,25.5 + parent: 1 + - uid: 1577 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,20.5 + parent: 1 + - uid: 1578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,15.5 + parent: 1 + - uid: 1600 + components: + - type: Transform + pos: -10.5,25.5 + parent: 1 +- proto: PoweredlightPink + entities: + - uid: 1112 + components: + - type: Transform + pos: 9.5,1.5 + parent: 1 + - uid: 1113 + components: + - type: Transform + pos: -8.5,1.5 + parent: 1 + - uid: 1114 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,22.5 + parent: 1 + - uid: 1115 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,22.5 + parent: 1 + - uid: 1116 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,29.5 + parent: 1 + - uid: 1118 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,29.5 + parent: 1 + - uid: 1120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,13.5 + parent: 1 + - uid: 1121 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,13.5 + parent: 1 + - uid: 1248 + components: + - type: Transform + pos: -1.5,7.5 + parent: 1 + - uid: 1278 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 + - uid: 1281 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 1 + - uid: 1282 + components: + - type: Transform + pos: -11.5,5.5 + parent: 1 + - uid: 1284 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -11.5,7.5 + parent: 1 +- proto: Protolathe + entities: + - uid: 408 + components: + - type: Transform + pos: -8.5,6.5 + parent: 1 +- proto: Puddle + entities: + - uid: 1139 + components: + - type: Transform + pos: 3.5,10.5 + parent: 1 +- proto: Rack + entities: + - uid: 1725 + components: + - type: Transform + pos: 1.5,18.5 + parent: 1 +- proto: RandomPosterAny + entities: + - uid: 738 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,4.5 + parent: 1 + - uid: 1124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,10.5 + parent: 1 + - uid: 1127 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 1 + - uid: 1249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - uid: 1251 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,5.5 + parent: 1 + - uid: 1252 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 1 + - uid: 1276 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 1305 + components: + - type: Transform + pos: -3.5,8.5 + parent: 1 + - uid: 1306 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 1307 + components: + - type: Transform + pos: -5.5,1.5 + parent: 1 + - uid: 1480 + components: + - type: Transform + pos: -0.5,20.5 + parent: 1 + - uid: 1534 + components: + - type: Transform + pos: 4.5,20.5 + parent: 1 + - uid: 1548 + components: + - type: Transform + pos: 7.5,25.5 + parent: 1 + - uid: 1549 + components: + - type: Transform + pos: 9.5,25.5 + parent: 1 + - uid: 1567 + components: + - type: Transform + pos: 12.5,27.5 + parent: 1 + - uid: 1568 + components: + - type: Transform + pos: 11.5,21.5 + parent: 1 + - uid: 1586 + components: + - type: Transform + pos: -4.5,15.5 + parent: 1 + - uid: 1587 + components: + - type: Transform + pos: -8.5,16.5 + parent: 1 + - uid: 1589 + components: + - type: Transform + pos: -4.5,23.5 + parent: 1 + - uid: 1590 + components: + - type: Transform + pos: -7.5,25.5 + parent: 1 +- proto: RandomSpawner100 + entities: + - uid: 1376 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,15.5 + parent: 1 + - uid: 1451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,15.5 + parent: 1 + - uid: 1452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,16.5 + parent: 1 + - uid: 1457 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,15.5 + parent: 1 + - uid: 1607 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,16.5 + parent: 1 + - uid: 1608 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,19.5 + parent: 1 + - uid: 1609 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,22.5 + parent: 1 + - uid: 1610 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,24.5 + parent: 1 + - uid: 1611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,18.5 + parent: 1 + - uid: 1612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 1 + - uid: 1613 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,11.5 + parent: 1 + - uid: 1614 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 1 + - uid: 1615 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 1 + - uid: 1616 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,7.5 + parent: 1 + - uid: 1722 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,16.5 + parent: 1 + - uid: 1723 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,18.5 + parent: 1 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 546 + components: + - type: Transform + pos: -6.5,10.5 + parent: 1 +- proto: ScrapGlass + entities: + - uid: 1283 + components: + - type: Transform + pos: -6.2173915,6.5729895 + parent: 1 + - uid: 1290 + components: + - type: Transform + pos: -5.9673915,7.6511145 + parent: 1 +- proto: ScrapProcessor + entities: + - uid: 737 + components: + - type: Transform + pos: -7.5,15.5 + parent: 1 +- proto: Screwdriver + entities: + - uid: 1291 + components: + - type: Transform + pos: -5.6705165,7.0729895 + parent: 1 +- proto: ShardGlassPlasma + entities: + - uid: 1366 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.2290099,12.126208 + parent: 1 + - uid: 1369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.1665096,13.798083 + parent: 1 +- proto: SheetPlasma1 + entities: + - uid: 1384 + components: + - type: Transform + parent: 1382 + - type: Physics + canCollide: False + - uid: 1394 + components: + - type: Transform + pos: -6.08665,8.458466 + parent: 1 + - uid: 1395 + components: + - type: Transform + pos: -6.164775,8.567841 + parent: 1 +- proto: ShelfGlass + entities: + - uid: 1423 + components: + - type: Transform + pos: 6.5,17.5 + parent: 1 + - type: Storage + storedItems: + 1424: + position: 0,0 + _rotation: South + 1425: + position: 2,3 + _rotation: South + 1426: + position: 3,0 + _rotation: South + 1427: + position: 0,3 + _rotation: East + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1424 + - 1425 + - 1427 + - 1426 +- proto: ShelfRGlass + entities: + - uid: 1382 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,8.5 + parent: 1 + - type: Storage + storedItems: + 1383: + position: 0,0 + _rotation: East + 1384: + position: 1,3 + _rotation: South + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1383 + - 1384 +- proto: ShuttersNormalOpen + entities: + - uid: 660 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 +- proto: ShuttleWindow + entities: + - uid: 8 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,23.5 + parent: 1 + - uid: 56 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,24.5 + parent: 1 + - uid: 57 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,24.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,23.5 + parent: 1 + - uid: 86 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 10.5,19.5 + parent: 1 + - uid: 152 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,22.5 + parent: 1 + - uid: 158 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,22.5 + parent: 1 + - uid: 208 + components: + - type: Transform + pos: 0.5,-1.5 + parent: 1 + - uid: 214 + components: + - type: Transform + pos: 0.5,1.5 + parent: 1 + - uid: 225 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 1 + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,24.5 + parent: 1 + - uid: 376 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,19.5 + parent: 1 + - uid: 377 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,19.5 + parent: 1 + - uid: 406 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,19.5 + parent: 1 + - uid: 511 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,5.5 + parent: 1 + - uid: 574 + components: + - type: Transform + pos: 12.5,8.5 + parent: 1 + - uid: 662 + components: + - type: Transform + pos: 0.5,-0.5 + parent: 1 +- proto: ShuttleWindowDiagonal + entities: + - uid: 52 + components: + - type: Transform + pos: -1.5,24.5 + parent: 1 + - uid: 55 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,23.5 + parent: 1 + - uid: 287 + components: + - type: Transform + pos: -2.5,23.5 + parent: 1 + - uid: 459 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,24.5 + parent: 1 +- proto: ShuttleWindowPlasma + entities: + - uid: 171 + components: + - type: Transform + pos: -4.5,11.5 + parent: 1 + - uid: 451 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 1 +- proto: SignalButtonWindows + entities: + - uid: 688 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,23.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 695: + - - Pressed + - Toggle + 694: + - - Pressed + - Toggle + 689: + - - Pressed + - Toggle + 690: + - - Pressed + - Toggle + 691: + - - Pressed + - Toggle + 693: + - - Pressed + - Toggle + 692: + - - Pressed + - Toggle + - uid: 1104 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1105: + - - Pressed + - Toggle + - uid: 1156 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,12.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 660: + - - Pressed + - Toggle + - uid: 1272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1270: + - - Pressed + - Toggle + 1268: + - - Pressed + - Toggle + 1269: + - - Pressed + - Toggle + 1267: + - - Pressed + - Toggle + - uid: 1298 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1299: + - - Pressed + - Toggle + 1300: + - - Pressed + - Toggle + 1301: + - - Pressed + - Toggle + 1302: + - - Pressed + - Toggle + - uid: 1304 + components: + - type: Transform + pos: -3.5,10.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 417: + - - Pressed + - Toggle + - uid: 1542 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,17.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 1472: + - - Pressed + - Toggle + 1473: + - - Pressed + - Toggle + - uid: 1599 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,23.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 238: + - - Pressed + - Toggle + 233: + - - Pressed + - Toggle + 112: + - - Pressed + - Toggle +- proto: SignBar + entities: + - uid: 1129 + components: + - type: Transform + pos: 4.5,13.5 + parent: 1 +- proto: SignDirectionalBar + entities: + - uid: 1128 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 +- proto: SignDirectionalDorms + entities: + - uid: 774 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,17.5 + parent: 1 +- proto: SignDirectionalEng + entities: + - uid: 1137 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 1 +- proto: SignDirectionalMed + entities: + - uid: 1422 + components: + - type: Transform + pos: 9.5,17.5 + parent: 1 +- proto: SignDirectionalSalvage + entities: + - uid: 1595 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,17.5 + parent: 1 +- proto: SignDirectionalSci + entities: + - uid: 1242 + components: + - type: Transform + pos: -1.5,14.5 + parent: 1 +- proto: SignEngineering + entities: + - uid: 1107 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,10.5 + parent: 1 + - uid: 1108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,2.5 + parent: 1 + - uid: 1126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,7.5 + parent: 1 +- proto: SignMedical + entities: + - uid: 1420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,16.5 + parent: 1 + - uid: 1421 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,17.5 + parent: 1 +- proto: SignSalvage + entities: + - uid: 1588 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,20.5 + parent: 1 + - uid: 1596 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,21.5 + parent: 1 +- proto: SignScience + entities: + - uid: 1238 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 1239 + components: + - type: Transform + pos: -2.5,5.5 + parent: 1 + - uid: 1240 + components: + - type: Transform + pos: -9.5,4.5 + parent: 1 + - uid: 1241 + components: + - type: Transform + pos: -9.5,8.5 + parent: 1 + - uid: 1402 + components: + - type: Transform + pos: -1.5,12.5 + parent: 1 + - uid: 1467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,17.5 + parent: 1 + - uid: 1469 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,17.5 + parent: 1 +- proto: Sink + entities: + - uid: 1569 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,26.5 + parent: 1 +- proto: SinkWide + entities: + - uid: 648 + components: + - type: Transform + pos: 0.5,11.5 + parent: 1 +- proto: SMESAdvanced + entities: + - uid: 635 + components: + - type: Transform + pos: 11.5,7.5 + parent: 1 +- proto: SpawnDungeonLootFood + entities: + - uid: 1550 + components: + - type: Transform + pos: 7.5729136,22.470207 + parent: 1 + - uid: 1551 + components: + - type: Transform + pos: 7.254918,22.616974 + parent: 1 +- proto: SpawnMobCatKitten + entities: + - uid: 1559 + components: + - type: Transform + pos: 11.5,22.5 + parent: 1 +- proto: SpawnPointContractor + entities: + - uid: 367 + components: + - type: Transform + pos: -0.5,21.5 + parent: 1 +- proto: SpawnPointLatejoin + entities: + - uid: 701 + components: + - type: Transform + pos: 0.5,17.5 + parent: 1 +- proto: SpawnPointMercenary + entities: + - uid: 769 + components: + - type: Transform + pos: 1.5,21.5 + parent: 1 +- proto: SpawnPointPilot + entities: + - uid: 698 + components: + - type: Transform + pos: 0.5,22.5 + parent: 1 +- proto: SpiderWeb + entities: + - uid: 600 + components: + - type: Transform + pos: -10.5,27.5 + parent: 1 +- proto: Stairs + entities: + - uid: 317 + components: + - type: Transform + pos: -7.5,21.5 + parent: 1 + - uid: 549 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,9.5 + parent: 1 + - uid: 628 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 1 + - uid: 663 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 1 + - uid: 679 + components: + - type: Transform + pos: 0.5,7.5 + parent: 1 + - uid: 680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 1 + - uid: 718 + components: + - type: Transform + pos: -6.5,21.5 + parent: 1 + - uid: 719 + components: + - type: Transform + pos: -5.5,21.5 + parent: 1 + - uid: 741 + components: + - type: Transform + pos: 2.5,14.5 + parent: 1 + - uid: 742 + components: + - type: Transform + pos: 3.5,14.5 + parent: 1 + - uid: 750 + components: + - type: Transform + pos: -0.5,14.5 + parent: 1 +- proto: StairWhite + entities: + - uid: 221 + components: + - type: Transform + pos: -5.5,10.5 + parent: 1 + - uid: 330 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 331 + components: + - type: Transform + pos: -0.5,12.5 + parent: 1 + - uid: 378 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 + - uid: 513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 1 +- proto: StairWood + entities: + - uid: 1544 + components: + - type: Transform + pos: 11.5,24.5 + parent: 1 + - uid: 1557 + components: + - type: Transform + pos: 8.5,22.5 + parent: 1 +- proto: SteelBench + entities: + - uid: 759 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,21.5 + parent: 1 + - uid: 760 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,21.5 + parent: 1 +- proto: StoolBar + entities: + - uid: 240 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,12.5 + parent: 1 + - uid: 295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,11.5 + parent: 1 + - uid: 754 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,10.5 + parent: 1 + - uid: 755 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,10.5 + parent: 1 +- proto: StorageCanister + entities: + - uid: 71 + components: + - type: Transform + pos: -5.5,2.5 + parent: 1 + - uid: 286 + components: + - type: Transform + pos: -4.5,2.5 + parent: 1 +- proto: StructureMeleeWeaponRackSalvage + entities: + - uid: 702 + components: + - type: Transform + pos: -8.5,25.5 + parent: 1 + - type: ContainerContainer + containers: + weapon1: !type:ContainerSlot + showEnts: False + occludes: True + ent: 770 + weapon2: !type:ContainerSlot + showEnts: False + occludes: True + ent: 771 + weapon3: !type:ContainerSlot + showEnts: False + occludes: True + ent: 772 + weapon4: !type:ContainerSlot + showEnts: False + occludes: True + ent: 773 + weapon5: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: SubstationBasic + entities: + - uid: 636 + components: + - type: Transform + pos: 11.5,9.5 + parent: 1 + - uid: 637 + components: + - type: Transform + pos: 10.5,9.5 + parent: 1 +- proto: TableCounterMetal + entities: + - uid: 740 + components: + - type: Transform + pos: -7.5,17.5 + parent: 1 +- proto: TableFancyRed + entities: + - uid: 756 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,9.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 504 + components: + - type: Transform + pos: -4.5,10.5 + parent: 1 + - uid: 538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 1 + - uid: 577 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 1 + - uid: 581 + components: + - type: Transform + pos: -0.5,23.5 + parent: 1 + - uid: 582 + components: + - type: Transform + pos: 1.5,23.5 + parent: 1 + - uid: 583 + components: + - type: Transform + pos: 1.5,22.5 + parent: 1 + - uid: 584 + components: + - type: Transform + pos: 0.5,23.5 + parent: 1 + - uid: 645 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 646 + components: + - type: Transform + pos: -1.5,10.5 + parent: 1 + - uid: 1237 + components: + - type: Transform + pos: 4.5,7.5 + parent: 1 + - uid: 1386 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,8.5 + parent: 1 + - uid: 1387 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,8.5 + parent: 1 +- proto: TableWoodReinforced + entities: + - uid: 40 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,13.5 + parent: 1 + - uid: 154 + components: + - type: Transform + pos: 6.5,22.5 + parent: 1 + - uid: 267 + components: + - type: Transform + pos: -2.5,16.5 + parent: 1 + - uid: 298 + components: + - type: Transform + pos: 7.5,22.5 + parent: 1 + - uid: 611 + components: + - type: Transform + pos: -1.5,16.5 + parent: 1 + - uid: 656 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,12.5 + parent: 1 + - uid: 657 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,11.5 + parent: 1 + - uid: 658 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,11.5 + parent: 1 +- proto: Thruster + entities: + - uid: 23 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 1 + - uid: 69 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,1.5 + parent: 1 + - uid: 92 + components: + - type: Transform + pos: 11.5,29.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 1 + - uid: 95 + components: + - type: Transform + pos: -9.5,11.5 + parent: 1 + - uid: 96 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 1 + - uid: 97 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,0.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: -10.5,29.5 + parent: 1 + - uid: 216 + components: + - type: Transform + pos: 7.5,26.5 + parent: 1 + - uid: 218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 1 + - uid: 283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,1.5 + parent: 1 + - uid: 284 + components: + - type: Transform + pos: -6.5,26.5 + parent: 1 + - uid: 296 + components: + - type: Transform + pos: 10.5,11.5 + parent: 1 + - uid: 297 + components: + - type: Transform + pos: -8.5,11.5 + parent: 1 + - uid: 337 + components: + - type: Transform + pos: 9.5,11.5 + parent: 1 + - uid: 420 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,1.5 + parent: 1 + - uid: 1123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,1.5 + parent: 1 + - uid: 1289 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,1.5 + parent: 1 + - uid: 1373 + components: + - type: Transform + pos: -3.5,22.5 + parent: 1 + - uid: 1375 + components: + - type: Transform + pos: 4.5,22.5 + parent: 1 +- proto: ThrusterMediumLong + entities: + - uid: 100 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 1 + - uid: 101 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,15.5 + parent: 1 + - uid: 268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,15.5 + parent: 1 + - uid: 539 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-0.5 + parent: 1 +- proto: ToiletDirtyWater + entities: + - uid: 1570 + components: + - type: Transform + pos: 11.5,27.5 + parent: 1 +- proto: ToyMouse + entities: + - uid: 1558 + components: + - type: Transform + pos: 9.542622,22.884062 + parent: 1 +- proto: ToyRipley + entities: + - uid: 1561 + components: + - type: Transform + pos: 10.790142,22.284763 + parent: 1 +- proto: TwoWayLever + entities: + - uid: 627 + components: + - type: Transform + pos: -5.5,17.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 721: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 631: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 710: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 712: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 713: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + - uid: 708 + components: + - type: Transform + pos: -11.5,22.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 704: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 705: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 706: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off + 707: + - - Left + - Reverse + - - Right + - Forward + - - Middle + - Off +- proto: VendingMachineBooze + entities: + - uid: 523 + components: + - type: Transform + pos: 6.5,13.5 + parent: 1 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 585 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 596 + components: + - type: Transform + pos: -10.5,19.5 + parent: 1 + - uid: 597 + components: + - type: Transform + pos: 11.5,19.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 1 + - uid: 3 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,4.5 + parent: 1 + - uid: 6 + components: + - type: Transform + pos: 1.5,4.5 + parent: 1 + - uid: 7 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,2.5 + parent: 1 + - uid: 9 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,21.5 + parent: 1 + - uid: 10 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,26.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,25.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,5.5 + parent: 1 + - uid: 13 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,27.5 + parent: 1 + - uid: 14 + components: + - type: Transform + pos: -10.5,26.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,28.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,25.5 + parent: 1 + - uid: 18 + components: + - type: Transform + pos: -11.5,6.5 + parent: 1 + - uid: 19 + components: + - type: Transform + pos: -9.5,6.5 + parent: 1 + - uid: 20 + components: + - type: Transform + pos: -2.5,7.5 + parent: 1 + - uid: 22 + components: + - type: Transform + pos: 5.5,4.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,10.5 + parent: 1 + - uid: 25 + components: + - type: Transform + pos: 4.5,8.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 6.5,8.5 + parent: 1 + - uid: 28 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,11.5 + parent: 1 + - uid: 29 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,14.5 + parent: 1 + - uid: 30 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,15.5 + parent: 1 + - uid: 31 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,16.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,21.5 + parent: 1 + - uid: 34 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,4.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,25.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,21.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,16.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,17.5 + parent: 1 + - uid: 41 + components: + - type: Transform + pos: 5.5,2.5 + parent: 1 + - uid: 43 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,1.5 + parent: 1 + - uid: 45 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 1 + - uid: 48 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,27.5 + parent: 1 + - uid: 49 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,26.5 + parent: 1 + - uid: 50 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,26.5 + parent: 1 + - uid: 51 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,21.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: -2.5,22.5 + parent: 1 + - uid: 54 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,21.5 + parent: 1 + - uid: 58 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 1 + - uid: 59 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 1 + - uid: 60 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,2.5 + parent: 1 + - uid: 61 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 1 + - uid: 62 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,1.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,2.5 + parent: 1 + - uid: 64 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,24.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,1.5 + parent: 1 + - uid: 66 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,26.5 + parent: 1 + - uid: 72 + components: + - type: Transform + pos: 7.5,8.5 + parent: 1 + - uid: 73 + components: + - type: Transform + pos: 7.5,21.5 + parent: 1 + - uid: 74 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,6.5 + parent: 1 + - uid: 75 + components: + - type: Transform + pos: -7.5,10.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,20.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,14.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -9.5,10.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,17.5 + parent: 1 + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,25.5 + parent: 1 + - uid: 110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,14.5 + parent: 1 + - uid: 111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,17.5 + parent: 1 + - uid: 123 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 1 + - uid: 124 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,13.5 + parent: 1 + - uid: 134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,10.5 + parent: 1 + - uid: 141 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 1 + - uid: 142 + components: + - type: Transform + pos: 5.5,8.5 + parent: 1 + - uid: 144 + components: + - type: Transform + pos: 6.5,14.5 + parent: 1 + - uid: 146 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 1 + - uid: 151 + components: + - type: Transform + pos: 5.5,14.5 + parent: 1 + - uid: 153 + components: + - type: Transform + pos: 4.5,14.5 + parent: 1 + - uid: 155 + components: + - type: Transform + pos: 9.5,25.5 + parent: 1 + - uid: 156 + components: + - type: Transform + pos: 1.5,9.5 + parent: 1 + - uid: 157 + components: + - type: Transform + pos: 6.5,6.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 7.5,25.5 + parent: 1 + - uid: 161 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,21.5 + parent: 1 + - uid: 163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -7.5,11.5 + parent: 1 + - uid: 194 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,6.5 + parent: 1 + - uid: 199 + components: + - type: Transform + pos: 10.5,27.5 + parent: 1 + - uid: 200 + components: + - type: Transform + pos: 12.5,26.5 + parent: 1 + - uid: 201 + components: + - type: Transform + pos: 12.5,24.5 + parent: 1 + - uid: 202 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,17.5 + parent: 1 + - uid: 203 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,21.5 + parent: 1 + - uid: 204 + components: + - type: Transform + pos: 6.5,25.5 + parent: 1 + - uid: 205 + components: + - type: Transform + pos: 8.5,25.5 + parent: 1 + - uid: 209 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,11.5 + parent: 1 + - uid: 210 + components: + - type: Transform + pos: 12.5,25.5 + parent: 1 + - uid: 211 + components: + - type: Transform + pos: 12.5,29.5 + parent: 1 + - uid: 215 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 1 + - uid: 222 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,17.5 + parent: 1 + - uid: 227 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,17.5 + parent: 1 + - uid: 229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,17.5 + parent: 1 + - uid: 249 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,21.5 + parent: 1 + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 1 + - uid: 251 + components: + - type: Transform + pos: 1.5,5.5 + parent: 1 + - uid: 252 + components: + - type: Transform + pos: 11.5,28.5 + parent: 1 + - uid: 254 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,16.5 + parent: 1 + - uid: 255 + components: + - type: Transform + pos: 8.5,26.5 + parent: 1 + - uid: 261 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,20.5 + parent: 1 + - uid: 269 + components: + - type: Transform + pos: 12.5,27.5 + parent: 1 + - uid: 270 + components: + - type: Transform + pos: 12.5,23.5 + parent: 1 + - uid: 271 + components: + - type: Transform + pos: 9.5,21.5 + parent: 1 + - uid: 272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,21.5 + parent: 1 + - uid: 273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,23.5 + parent: 1 + - uid: 277 + components: + - type: Transform + pos: 10.5,26.5 + parent: 1 + - uid: 285 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 1 + - uid: 289 + components: + - type: Transform + pos: 1.5,8.5 + parent: 1 + - uid: 290 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 1 + - uid: 291 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,0.5 + parent: 1 + - uid: 293 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,11.5 + parent: 1 + - uid: 302 + components: + - type: Transform + pos: 6.5,7.5 + parent: 1 + - uid: 307 + components: + - type: Transform + pos: -6.5,11.5 + parent: 1 + - uid: 309 + components: + - type: Transform + pos: -6.5,13.5 + parent: 1 + - uid: 310 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,10.5 + parent: 1 + - uid: 312 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,14.5 + parent: 1 + - uid: 315 + components: + - type: Transform + pos: -6.5,14.5 + parent: 1 + - uid: 316 + components: + - type: Transform + pos: 5.5,7.5 + parent: 1 + - uid: 318 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 1 + - uid: 319 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,14.5 + parent: 1 + - uid: 321 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,15.5 + parent: 1 + - uid: 322 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,16.5 + parent: 1 + - uid: 324 + components: + - type: Transform + pos: 8.5,2.5 + parent: 1 + - uid: 325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,17.5 + parent: 1 + - uid: 335 + components: + - type: Transform + pos: -0.5,8.5 + parent: 1 + - uid: 352 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,13.5 + parent: 1 + - uid: 365 + components: + - type: Transform + pos: -10.5,28.5 + parent: 1 + - uid: 366 + components: + - type: Transform + pos: 12.5,28.5 + parent: 1 + - uid: 368 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,16.5 + parent: 1 + - uid: 369 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,22.5 + parent: 1 + - uid: 370 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,17.5 + parent: 1 + - uid: 371 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,12.5 + parent: 1 + - uid: 381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,20.5 + parent: 1 + - uid: 382 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,16.5 + parent: 1 + - uid: 385 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,10.5 + parent: 1 + - uid: 386 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,10.5 + parent: 1 + - uid: 389 + components: + - type: Transform + pos: -10.5,10.5 + parent: 1 + - uid: 391 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,9.5 + parent: 1 + - uid: 392 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,14.5 + parent: 1 + - uid: 394 + components: + - type: Transform + pos: 4.5,20.5 + parent: 1 + - uid: 404 + components: + - type: Transform + pos: 12.5,22.5 + parent: 1 + - uid: 405 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,24.5 + parent: 1 + - uid: 409 + components: + - type: Transform + pos: -7.5,14.5 + parent: 1 + - uid: 410 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,10.5 + parent: 1 + - uid: 411 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,10.5 + parent: 1 + - uid: 413 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,11.5 + parent: 1 + - uid: 416 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,7.5 + parent: 1 + - uid: 426 + components: + - type: Transform + pos: -8.5,10.5 + parent: 1 + - uid: 427 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 + - uid: 428 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 1 + - uid: 430 + components: + - type: Transform + pos: -2.5,2.5 + parent: 1 + - uid: 436 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,17.5 + parent: 1 + - uid: 438 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 + - uid: 444 + components: + - type: Transform + pos: 9.5,26.5 + parent: 1 + - uid: 445 + components: + - type: Transform + pos: 1.5,14.5 + parent: 1 + - uid: 447 + components: + - type: Transform + pos: 7.5,2.5 + parent: 1 + - uid: 448 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,2.5 + parent: 1 + - uid: 450 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,21.5 + parent: 1 + - uid: 452 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 1 + - uid: 454 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,1.5 + parent: 1 + - uid: 455 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,2.5 + parent: 1 + - uid: 456 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,22.5 + parent: 1 + - uid: 457 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 1 + - uid: 458 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,20.5 + parent: 1 + - uid: 460 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,0.5 + parent: 1 + - uid: 461 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,1.5 + parent: 1 + - uid: 462 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,23.5 + parent: 1 + - uid: 464 + components: + - type: Transform + pos: 6.5,2.5 + parent: 1 + - uid: 466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,21.5 + parent: 1 + - uid: 467 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,21.5 + parent: 1 + - uid: 468 + components: + - type: Transform + pos: 1.5,7.5 + parent: 1 + - uid: 469 + components: + - type: Transform + pos: -2.5,8.5 + parent: 1 + - uid: 470 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 1 + - uid: 471 + components: + - type: Transform + pos: 3.5,4.5 + parent: 1 + - uid: 472 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,13.5 + parent: 1 + - uid: 473 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,20.5 + parent: 1 + - uid: 475 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,3.5 + parent: 1 + - uid: 476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 1 + - uid: 477 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,0.5 + parent: 1 + - uid: 479 + components: + - type: Transform + pos: 3.5,8.5 + parent: 1 + - uid: 481 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 1 + - uid: 484 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,1.5 + parent: 1 + - uid: 485 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 1 + - uid: 486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,1.5 + parent: 1 + - uid: 487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 1 + - uid: 488 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,29.5 + parent: 1 + - uid: 490 + components: + - type: Transform + pos: 2.5,8.5 + parent: 1 + - uid: 491 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,22.5 + parent: 1 + - uid: 492 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,13.5 + parent: 1 + - uid: 493 + components: + - type: Transform + pos: 2.5,4.5 + parent: 1 + - uid: 494 + components: + - type: Transform + pos: 4.5,4.5 + parent: 1 + - uid: 495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,16.5 + parent: 1 + - uid: 497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,21.5 + parent: 1 + - uid: 501 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,2.5 + parent: 1 + - uid: 502 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,5.5 + parent: 1 + - uid: 510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 1 + - uid: 514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,9.5 + parent: 1 + - uid: 520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 1 + - uid: 521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,8.5 + parent: 1 + - uid: 524 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,8.5 + parent: 1 + - uid: 527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,17.5 + parent: 1 + - uid: 528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,17.5 + parent: 1 + - uid: 548 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 1 + - uid: 570 + components: + - type: Transform + pos: -2.5,1.5 + parent: 1 + - uid: 580 + components: + - type: Transform + pos: -3.5,1.5 + parent: 1 + - uid: 615 + components: + - type: Transform + pos: 10.5,24.5 + parent: 1 + - uid: 659 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,12.5 + parent: 1 + - uid: 668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,13.5 + parent: 1 + - uid: 670 + components: + - type: Transform + pos: 5.5,5.5 + parent: 1 + - uid: 671 + components: + - type: Transform + pos: 10.5,25.5 + parent: 1 + - uid: 672 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,14.5 + parent: 1 + - uid: 673 + components: + - type: Transform + pos: 6.5,21.5 + parent: 1 + - uid: 714 + components: + - type: Transform + pos: -4.5,15.5 + parent: 1 + - uid: 715 + components: + - type: Transform + pos: -4.5,16.5 + parent: 1 + - uid: 717 + components: + - type: Transform + pos: -8.5,21.5 + parent: 1 + - uid: 766 + components: + - type: Transform + pos: -1.5,8.5 + parent: 1 + - uid: 1246 + components: + - type: Transform + pos: -0.5,7.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 17 + components: + - type: Transform + pos: -11.5,10.5 + parent: 1 + - uid: 32 + components: + - type: Transform + pos: -10.5,11.5 + parent: 1 + - uid: 39 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,0.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 + - uid: 44 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,0.5 + parent: 1 + - uid: 46 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 1 + - uid: 47 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 1 + - uid: 139 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,14.5 + parent: 1 + - uid: 160 + components: + - type: Transform + pos: 6.5,26.5 + parent: 1 + - uid: 212 + components: + - type: Transform + pos: 12.5,30.5 + parent: 1 + - uid: 245 + components: + - type: Transform + pos: 10.5,28.5 + parent: 1 + - uid: 246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,27.5 + parent: 1 + - uid: 248 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 1 + - uid: 278 + components: + - type: Transform + pos: 8.5,27.5 + parent: 1 + - uid: 300 + components: + - type: Transform + pos: -11.5,21.5 + parent: 1 + - uid: 320 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,14.5 + parent: 1 + - uid: 327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,25.5 + parent: 1 + - uid: 387 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 12.5,10.5 + parent: 1 + - uid: 414 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,11.5 + parent: 1 + - uid: 425 + components: + - type: Transform + pos: 5.5,25.5 + parent: 1 + - uid: 453 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,25.5 + parent: 1 + - uid: 463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 1 + - uid: 465 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,26.5 + parent: 1 + - uid: 478 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -9.5,28.5 + parent: 1 + - uid: 480 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,16.5 + parent: 1 + - uid: 483 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,-0.5 + parent: 1 + - uid: 489 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 12.5,16.5 + parent: 1 + - uid: 496 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,30.5 + parent: 1 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 1273 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 1 + - uid: 1287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,2.5 + parent: 1 + - uid: 1288 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -7.5,2.5 + parent: 1 + - uid: 1432 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 9.5,15.5 + parent: 1 + - uid: 1479 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,20.5 + parent: 1 + - uid: 1597 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,24.5 + parent: 1 + - uid: 1709 + components: + - type: Transform + pos: -1.5,20.5 + parent: 1 +- proto: WarningN2 + entities: + - uid: 1131 + components: + - type: Transform + pos: 6.5,5.5 + parent: 1 +- proto: WarningO2 + entities: + - uid: 1106 + components: + - type: Transform + pos: 6.5,4.5 + parent: 1 +- proto: WarpPoint + entities: + - uid: 304 + components: + - type: Transform + pos: 0.5,21.5 + parent: 1 +- proto: WeaponCrusherDagger + entities: + - uid: 770 + components: + - type: Transform + parent: 702 + - type: Physics + canCollide: False +- proto: WeaponCrusherGlaive + entities: + - uid: 771 + components: + - type: Transform + parent: 702 + - type: Physics + canCollide: False +- proto: WeaponTurretL85Autocannon + entities: + - uid: 1374 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,27.5 + parent: 1 + - uid: 1478 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 9.5,27.5 + parent: 1 +- proto: WeaponTurretM220 + entities: + - uid: 1182 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,13.5 + parent: 1 +- proto: WetFloorSign + entities: + - uid: 1138 + components: + - type: Transform + pos: 3.7567782,10.826041 + parent: 1 +- proto: WindoorSecure + entities: + - uid: 614 + components: + - type: Transform + pos: -5.5,16.5 + parent: 1 + - uid: 1162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 1 + - uid: 1163 + components: + - type: Transform + pos: 6.5,11.5 + parent: 1 +- proto: WindowFrostedDirectional + entities: + - uid: 720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,17.5 + parent: 1 + - uid: 734 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,21.5 + parent: 1 + - uid: 735 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,21.5 + parent: 1 + - uid: 739 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,17.5 + parent: 1 + - uid: 752 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,12.5 + parent: 1 + - uid: 753 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,11.5 + parent: 1 + - uid: 864 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,24.5 + parent: 1 + - uid: 865 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,24.5 + parent: 1 + - uid: 866 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,24.5 + parent: 1 + - uid: 867 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,24.5 + parent: 1 + - uid: 1364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,5.5 + parent: 1 + - uid: 1365 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,8.5 + parent: 1 + - uid: 1400 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 1 + - uid: 1401 + components: + - type: Transform + pos: -1.5,9.5 + parent: 1 + - uid: 1463 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,17.5 + parent: 1 + - uid: 1464 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,17.5 + parent: 1 + - uid: 1465 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,17.5 + parent: 1 + - uid: 1466 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 11.5,17.5 + parent: 1 + - uid: 1716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,14.5 + parent: 1 + - uid: 1718 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,14.5 + parent: 1 +- proto: Wrench + entities: + - uid: 1295 + components: + - type: Transform + pos: -6.76599,7.7089334 + parent: 1 ... diff --git a/Resources/Maps/_Forge/Shuttles/Science/wasp.yml b/Resources/Maps/_Forge/Shuttles/Science/wasp.yml new file mode 100644 index 000000000000..88f992a13a27 --- /dev/null +++ b/Resources/Maps/_Forge/Shuttles/Science/wasp.yml @@ -0,0 +1,1425 @@ +meta: + format: 7 + category: Grid + engineVersion: 268.1.0 + forkId: "" + forkVersion: "" + time: 01/17/2026 07:06:55 + entityCount: 185 +maps: [] +grids: +- 1 +orphans: +- 1 +nullspace: [] +tilemap: + 2: Space + 6: FloorDarkOffset + 5: FloorElevatorShaft + 0: FloorGlass + 1: FloorHullReinforced + 7: FloorRGlass + 8: FloorTechMaint2 + 4: FloorTechMaintDark + 9: Lattice + 3: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + name: grid + - type: Transform + pos: -3.325194,5.5518045 + parent: invalid + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: AAAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + 0,-1: + ind: 0,-1 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAQAAAAAAAAEAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAAAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAQAAAAAAAADAAAAAAAABAAAAAAAAAMAAAAAAAABAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAUAAAAAAAADAAAAAAAABgAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAYAAAAAAAAGAAAAAAAABwAAAAAAAAcAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAABgAAAAAAAAcAAAAAAAAHAAAAAAAABQAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAYAAAAAAAAHAAAAAAAABwAAAAAAAAUAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAAIAAAAAAAACAAAAAAAAAMAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAACAAAAAAAAAgAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAMAAAAAAAADAAAAAAAAAAAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + -1,-1: + ind: -1,-1 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAwAAAAAAAAQAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAMAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAADAAAAAAAAAwAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAQAAAAAAAAMAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAkAAAAAAAADAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAJAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAACQAAAAAAAAkAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAkAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAJAAAAAAAACQAAAAAAAA== + version: 7 + -1,0: + ind: -1,0 + tiles: AgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAAAAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAAIAAAAAAAACAAAAAAAAAgAAAAAAAA== + version: 7 + - 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 + dampingModifier: 0.25 + - type: ImplicitRoof + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 46: -1,-9 + 47: 0,-9 + - node: + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 56: 2,-3 + 57: 3,-7 + 58: 2,-9 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 55: 2,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 54: 1,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 53: 2,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 52: 1,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteBox + decals: + 41: 3,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndN + decals: + 43: 1,-4 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndS + decals: + 31: 1,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 40: 1,-5 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 32: 1,-5 + - node: + color: '#8D1C9996' + id: DeliveryGreyscale + decals: + 18: 2,-6 + 19: 2,-5 + 20: 2,-4 + 21: 3,-4 + 22: 3,-5 + 23: 3,-6 + - node: + color: '#8D1C9996' + id: OffsetOverlay + decals: + 28: 1,-6 + 29: 1,-5 + 30: 3,-7 + 42: 1,-4 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale + decals: + 50: 1,-2 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 49: 2,-3 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 48: 1,-3 + - node: + color: '#D4D4D428' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 51: 2,-2 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 7 + 0,-3: + 0: 240 + 1: 28672 + 0,-2: + 1: 61347 + -1,-3: + 1: 32768 + 0: 1024 + -1,-2: + 1: 8 + 0: 1024 + 2: 16384 + 0,-1: + 1: 1646 + 0: 32768 + -1,-1: + 2: 50372 + 1,-3: + 0: 4352 + 1,-2: + 1: 4096 + 1,-1: + 1: 1 + 0: 16 + -1,0: + 0: 4 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + 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 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: BecomesStation + id: WaspS +- proto: AirAlarm + entities: + - uid: 169 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - type: DeviceList + devices: + - 146 + - 147 + - 156 + - 104 +- proto: AirCanister + entities: + - uid: 86 + components: + - type: Transform + anchored: True + pos: 3.5,-6.5 + parent: 1 + - type: Physics + bodyType: Static +- proto: AirlockGlassShuttle + entities: + - uid: 64 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 + - uid: 65 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 +- proto: AirlockScience + entities: + - uid: 109 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 1 +- proto: APCBasic + entities: + - uid: 168 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 1 +- proto: AtmosDeviceFanDirectional + entities: + - uid: 67 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 1 + - uid: 68 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 1 +- proto: AtmosFixBlockerMarker + entities: + - uid: 45 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 46 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 47 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 48 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 49 + components: + - type: Transform + pos: 2.5,0.5 + parent: 1 + - uid: 50 + components: + - type: Transform + pos: 3.5,-0.5 + parent: 1 + - uid: 51 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 1 + - uid: 52 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 1 + - uid: 53 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 1 + - uid: 54 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 1 + - uid: 55 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 1 + - uid: 56 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 1 + - uid: 57 + components: + - type: Transform + pos: -0.5,-0.5 + parent: 1 + - uid: 58 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 1 + - uid: 59 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 60 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 174 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 175 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 1 + - uid: 176 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 177 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 1 + - uid: 178 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 +- proto: BlastDoorOpen + entities: + - uid: 185 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 +- proto: ButtonFrameCaution + entities: + - uid: 183 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: CableApcExtension + entities: + - uid: 125 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 126 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 127 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 1 + - uid: 128 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 1 + - uid: 129 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 130 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 131 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 132 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 133 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 134 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 135 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 136 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 137 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 1 + - uid: 138 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - uid: 139 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 1 + - uid: 140 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: CableHV + entities: + - uid: 110 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 111 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 112 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 113 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 114 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 115 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 159 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 162 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 +- proto: CableMV + entities: + - uid: 105 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 1 + - uid: 116 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 + - uid: 117 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 + - uid: 118 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - uid: 119 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 120 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 1 + - uid: 121 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 + - uid: 122 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 + - uid: 123 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 + - uid: 124 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 1 + - uid: 163 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 +- proto: Catwalk + entities: + - uid: 39 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 1 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-7.5 + parent: 1 + - uid: 73 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 1 + - uid: 81 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 1 + - uid: 94 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 99 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 100 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 1 + - uid: 101 + components: + - type: Transform + pos: 2.5,-10.5 + parent: 1 + - uid: 102 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 1 +- proto: CatwalkDarkTile + entities: + - uid: 82 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 1 + - uid: 87 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 1 + - uid: 88 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 89 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-4.5 + parent: 1 + - uid: 90 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-3.5 + parent: 1 + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 1 + - uid: 92 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 1 +- proto: ChairPilotSeat + entities: + - uid: 83 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 +- proto: ComputerTabletopShuttle + entities: + - uid: 95 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 +- proto: CrateScience + entities: + - uid: 160 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 1 +- proto: CrateScienceSecure + entities: + - uid: 161 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 1 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 180 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 1 +- proto: EmergencyLight + entities: + - uid: 171 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 1 + - uid: 172 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + - uid: 173 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 1 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 181 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 1 +- proto: FaxMachineShip + entities: + - uid: 103 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: FirelockGlass + entities: + - uid: 104 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 169 +- proto: GasPassiveVent + entities: + - uid: 145 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBend + entities: + - uid: 149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 150 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GasPipeBendAlt2 + entities: + - uid: 148 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeManifold + entities: + - uid: 157 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPipeStraight + entities: + - uid: 98 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 152 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 153 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 154 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-0.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 1 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 158 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-6.5 + parent: 1 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasPort + entities: + - uid: 66 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-6.5 + parent: 1 + - type: AtmosPipeLayers + pipeLayer: Tertiary + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentPump + entities: + - uid: 146 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 169 + - type: AtmosPipeColor + color: '#0055CCFF' + - uid: 147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 169 + - type: AtmosPipeColor + color: '#0055CCFF' +- proto: GasVentScrubber + entities: + - uid: 156 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 1 + - type: DeviceNetwork + deviceLists: + - 169 + - type: AtmosPipeColor + color: '#990000FF' +- proto: GravityGeneratorMini + entities: + - uid: 74 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 1 +- proto: Grille + entities: + - uid: 10 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 1 + - uid: 43 + components: + - type: Transform + pos: -1.5,-1.5 + parent: 1 + - uid: 44 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 1 + - uid: 96 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 1 + - uid: 97 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 +- proto: GrilleDiagonal + entities: + - uid: 9 + components: + - type: Transform + pos: -1.5,0.5 + parent: 1 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-4.5 + parent: 1 +- proto: Gyroscope + entities: + - uid: 19 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 1 +- proto: HandheldArtifactContainer + entities: + - uid: 107 + components: + - type: Transform + pos: 3.7444687,-5.5355053 + parent: 1 + - uid: 108 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.9475937,-3.3167572 + parent: 1 +- proto: LockerWallMaterialsFuelPlasmaFilled + entities: + - uid: 80 + components: + - type: Transform + pos: 2.5,-7.5 + parent: 1 +- proto: NFHolopadShip + entities: + - uid: 85 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 1 +- proto: PortableGeneratorPacmanShuttle + entities: + - uid: 31 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 1 +- proto: PosterContrabandTrueEnemy + entities: + - uid: 164 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 1 +- proto: Poweredlight + entities: + - uid: 142 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-5.5 + parent: 1 + - uid: 143 + components: + - type: Transform + pos: 2.5,-1.5 + parent: 1 +- proto: PoweredlightPink + entities: + - uid: 141 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 +- proto: PoweredSmallLight + entities: + - uid: 144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 1 +- proto: RandomPosterLegit + entities: + - uid: 165 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 166 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 1 + - uid: 167 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 1 +- proto: ShuttleWindowPlasma + entities: + - uid: 79 + components: + - type: Transform + pos: 1.5,-0.5 + parent: 1 +- proto: SignalButtonWindows + entities: + - uid: 184 + components: + - type: Transform + pos: 1.5,-1.5 + parent: 1 + - type: DeviceLinkSource + linkedPorts: + 185: + - - Pressed + - Toggle +- proto: SignScience + entities: + - uid: 182 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 +- proto: StairBridge + entities: + - uid: 62 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 1 + - uid: 63 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-2.5 + parent: 1 + - uid: 170 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 1 +- proto: SubstationBasic + entities: + - uid: 93 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 1 +- proto: SuitStorageWallmountEVAScientist + entities: + - uid: 69 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 1 + - uid: 106 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 +- proto: TableReinforced + entities: + - uid: 70 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-1.5 + parent: 1 + - uid: 84 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 1 +- proto: Thruster + entities: + - uid: 13 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-5.5 + parent: 1 + - uid: 15 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 1 + - uid: 61 + components: + - type: Transform + pos: 1.5,0.5 + parent: 1 + - uid: 76 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 1 + - uid: 77 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 1 +- proto: WallShuttle + entities: + - uid: 2 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-0.5 + parent: 1 + - uid: 3 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-1.5 + parent: 1 + - uid: 4 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 1 + - uid: 5 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 1 + - uid: 6 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-4.5 + parent: 1 + - uid: 7 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 1 + - uid: 8 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 1 + - uid: 11 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 1 + - uid: 12 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 1 + - uid: 14 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 1 + - uid: 16 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-7.5 + parent: 1 + - uid: 17 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 1 + - uid: 18 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 1 + - uid: 21 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 1 + - uid: 27 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 1 + - uid: 28 + components: + - type: Transform + pos: 3.5,-1.5 + parent: 1 + - uid: 29 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 1 + - uid: 33 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 1 + - uid: 34 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 1 + - uid: 35 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 1 + - uid: 36 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 1 + - uid: 37 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-5.5 + parent: 1 + - uid: 38 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-6.5 + parent: 1 + - uid: 40 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 1 + - uid: 41 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-7.5 + parent: 1 + - uid: 42 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 1 + - uid: 78 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 1 +- proto: WallShuttleDiagonal + entities: + - uid: 20 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 1 + - uid: 22 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-9.5 + parent: 1 + - uid: 23 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 1 + - uid: 24 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 1 + - uid: 25 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 1 + - uid: 26 + components: + - type: Transform + pos: 0.5,0.5 + parent: 1 + - uid: 30 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 1 + - uid: 32 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 1 + - uid: 75 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-10.5 + parent: 1 +- proto: WallWeaponCapacitorRecharger + entities: + - uid: 179 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,-2.5 + parent: 1 +... diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml index d57f56171def..e6c401d55a3e 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/computers.yml @@ -543,7 +543,7 @@ - type: UserInterface interfaces: enum.ResearchConsoleUiKey.Key: - type: ResearchConsoleFrontierBoundUserInterface # Frontier: ResearchConsole