diff --git a/Content.Server/EntryPoint.cs b/Content.Server/EntryPoint.cs index 9bf2032e06..0f9a6bd624 100644 --- a/Content.Server/EntryPoint.cs +++ b/Content.Server/EntryPoint.cs @@ -61,7 +61,6 @@ namespace Content.Server IoCManager.Resolve().StartInit(); IoCManager.Resolve().Initialize(); - IoCManager.Resolve().Initialize(); IoCManager.Resolve().Initialize(); } diff --git a/Content.Server/GameObjects/Components/NodeContainer/NodeContainerComponent.cs b/Content.Server/GameObjects/Components/NodeContainer/NodeContainerComponent.cs index cf7279185f..100e1d67ed 100644 --- a/Content.Server/GameObjects/Components/NodeContainer/NodeContainerComponent.cs +++ b/Content.Server/GameObjects/Components/NodeContainer/NodeContainerComponent.cs @@ -1,8 +1,5 @@ -using Content.Server.GameObjects.Components.NodeContainer.NodeGroups; -using Content.Server.GameObjects.Components.NodeContainer.Nodes; +using Content.Server.GameObjects.Components.NodeContainer.Nodes; using Robust.Shared.GameObjects; -using Robust.Shared.Interfaces.GameObjects; -using Robust.Shared.IoC; using Robust.Shared.Serialization; using Robust.Shared.ViewVariables; using System.Collections.Generic; @@ -21,37 +18,27 @@ namespace Content.Server.GameObjects.Components.NodeContainer public IReadOnlyList Nodes => _nodes; private List _nodes = new List(); -#pragma warning disable 649 - [Dependency] private readonly INodeFactory _nodeFactory; -#pragma warning restore 649 - - /// - /// A set of s and implementation names - /// to be created and held in this container. - /// - [ViewVariables] - private Dictionary> _nodeTypes; - public override void ExposeData(ObjectSerializer serializer) { base.ExposeData(serializer); - serializer.DataField(ref _nodeTypes, "nodeTypes", new Dictionary> { }); + serializer.DataField(ref _nodes, "nodes", new List()); + } + + public override void Initialize() + { + base.Initialize(); + foreach (var node in _nodes) + { + node.Initialize(Owner); + } } protected override void Startup() { base.Startup(); - foreach (var nodeType in _nodeTypes) - { - var nodeGroupID = nodeType.Key; - foreach (var nodeName in nodeType.Value) - { - _nodes.Add(MakeNewNode(nodeName, nodeGroupID, Owner)); - } - } foreach (var node in _nodes) { - node.OnContainerInitialize(); + node.OnContainerStartup(); } } @@ -61,13 +48,7 @@ namespace Content.Server.GameObjects.Components.NodeContainer { node.OnContainerRemove(); } - _nodes = null; base.OnRemove(); } - - private Node MakeNewNode(string nodeName, NodeGroupID groupID, IEntity owner) - { - return _nodeFactory.MakeNode(nodeName, groupID, owner); - } } } diff --git a/Content.Server/GameObjects/Components/NodeContainer/Nodes/AdjacentNode.cs b/Content.Server/GameObjects/Components/NodeContainer/Nodes/AdjacentNode.cs index ef2eae7313..097bf8ca74 100644 --- a/Content.Server/GameObjects/Components/NodeContainer/Nodes/AdjacentNode.cs +++ b/Content.Server/GameObjects/Components/NodeContainer/Nodes/AdjacentNode.cs @@ -1,5 +1,4 @@ -using Content.Server.GameObjects.Components.NodeContainer.NodeGroups; -using Robust.Shared.GameObjects.Components.Transform; +using Robust.Shared.GameObjects.Components.Transform; using System.Collections.Generic; using System.Linq; @@ -8,7 +7,6 @@ namespace Content.Server.GameObjects.Components.NodeContainer.Nodes /// /// A that can reach other s that are directly adjacent to it. /// - [Node("AdjacentNode")] public class AdjacentNode : Node { protected override IEnumerable GetReachableNodes() diff --git a/Content.Server/GameObjects/Components/NodeContainer/Nodes/Node.cs b/Content.Server/GameObjects/Components/NodeContainer/Nodes/Node.cs index d058de9097..98374bc2af 100644 --- a/Content.Server/GameObjects/Components/NodeContainer/Nodes/Node.cs +++ b/Content.Server/GameObjects/Components/NodeContainer/Nodes/Node.cs @@ -1,5 +1,4 @@ using Content.Server.GameObjects.Components.NodeContainer.NodeGroups; -using Robust.Server.GameObjects; using Robust.Shared.Interfaces.GameObjects; using Robust.Shared.IoC; using Robust.Shared.ViewVariables; @@ -7,6 +6,8 @@ using System.Collections.Generic; using System.Diagnostics; using System.Linq; using Robust.Shared.GameObjects.Components; +using Robust.Shared.Interfaces.Serialization; +using Robust.Shared.Serialization; namespace Content.Server.GameObjects.Components.NodeContainer.Nodes { @@ -14,7 +15,7 @@ namespace Content.Server.GameObjects.Components.NodeContainer.Nodes /// Organizes themselves into distinct s with other s /// that they can "reach" and have the same . /// - public abstract class Node + public abstract class Node : IExposeData { /// /// An ID used as a criteria for combining into groups. Determines which @@ -45,17 +46,20 @@ namespace Content.Server.GameObjects.Components.NodeContainer.Nodes /// private bool _deleting = false; -#pragma warning disable 649 - [Dependency] private readonly INodeGroupFactory _nodeGroupFactory; -#pragma warning restore 649 + private INodeGroupFactory _nodeGroupFactory; - public void Initialize(NodeGroupID nodeGroupID, IEntity owner) + public virtual void ExposeData(ObjectSerializer serializer) { - NodeGroupID = nodeGroupID; - Owner = owner; + serializer.DataField(this, x => NodeGroupID, "nodeGroupID", NodeGroupID.Default); } - public void OnContainerInitialize() + public void Initialize(IEntity owner) + { + Owner = owner; + _nodeGroupFactory = IoCManager.Resolve(); + } + + public void OnContainerStartup() { TryAssignGroupIfNeeded(); CombineGroupWithReachable(); diff --git a/Content.Server/GameObjects/Components/NodeContainer/Nodes/NodeAttribute.cs b/Content.Server/GameObjects/Components/NodeContainer/Nodes/NodeAttribute.cs deleted file mode 100644 index b11554c7af..0000000000 --- a/Content.Server/GameObjects/Components/NodeContainer/Nodes/NodeAttribute.cs +++ /dev/null @@ -1,20 +0,0 @@ -using System; - -namespace Content.Server.GameObjects.Components.NodeContainer.Nodes -{ - /// - /// Associates a implementation with a string. This is used - /// to specify an 's strategy in yaml. Used by . - /// - [AttributeUsage(AttributeTargets.Class, AllowMultiple = false, Inherited = false)] - public class - NodeAttribute : Attribute - { - public string Name { get; } - - public NodeAttribute(string name) - { - Name = name; - } - } -} diff --git a/Content.Server/GameObjects/Components/NodeContainer/Nodes/NodeFactory.cs b/Content.Server/GameObjects/Components/NodeContainer/Nodes/NodeFactory.cs deleted file mode 100644 index 6f0b3ed263..0000000000 --- a/Content.Server/GameObjects/Components/NodeContainer/Nodes/NodeFactory.cs +++ /dev/null @@ -1,58 +0,0 @@ -using Content.Server.GameObjects.Components.NodeContainer.NodeGroups; -using Robust.Shared.Interfaces.GameObjects; -using Robust.Shared.Interfaces.Reflection; -using Robust.Shared.IoC; -using System; -using System.Collections.Generic; -using System.Reflection; - -namespace Content.Server.GameObjects.Components.NodeContainer.Nodes -{ - public interface INodeFactory - { - /// - /// Performs reflection to associate implementations with the - /// string specified in their . - /// - void Initialize(); - - /// - /// Returns a new instance. - /// - Node MakeNode(string nodeName, NodeGroupID groupID, IEntity owner); - } - - public class NodeFactory : INodeFactory - { - private readonly Dictionary _groupTypes = new Dictionary(); - -#pragma warning disable 649 - [Dependency] private readonly IReflectionManager _reflectionManager; - [Dependency] private readonly IDynamicTypeFactory _typeFactory; -#pragma warning restore 649 - - public void Initialize() - { - var nodeTypes = _reflectionManager.GetAllChildren(); - foreach (var nodeType in nodeTypes) - { - var att = nodeType.GetCustomAttribute(); - if (att != null) - { - _groupTypes.Add(att.Name, nodeType); - } - } - } - - public Node MakeNode(string nodeName, NodeGroupID groupID, IEntity owner) - { - if (_groupTypes.TryGetValue(nodeName, out var type)) - { - var newNode = _typeFactory.CreateInstance(type); - newNode.Initialize(groupID, owner); - return newNode; - } - throw new ArgumentException($"{nodeName} did not have an associated {nameof(Node)}."); - } - } -} diff --git a/Content.Server/ServerContentIoC.cs b/Content.Server/ServerContentIoC.cs index 57d1ab0054..dded203861 100644 --- a/Content.Server/ServerContentIoC.cs +++ b/Content.Server/ServerContentIoC.cs @@ -15,7 +15,6 @@ using Content.Shared.Interfaces; using Content.Shared.Kitchen; using Robust.Shared.IoC; using Content.Server.GameObjects.Components.NodeContainer.NodeGroups; -using Content.Server.GameObjects.Components.NodeContainer.Nodes; using Content.Server.GameObjects.Components.Power.PowerNetComponents; namespace Content.Server @@ -38,7 +37,6 @@ namespace Content.Server IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); - IoCManager.Register(); IoCManager.Register(); IoCManager.Register(); } diff --git a/Resources/Maps/saltern.yml b/Resources/Maps/saltern.yml index f8f60db0f6..5890cb574b 100644 --- a/Resources/Maps/saltern.yml +++ b/Resources/Maps/saltern.yml @@ -131,8 +131,12 @@ entities: pos: -29.5,11.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable - uid: 1 type: DisposalBend components: @@ -140,8 +144,12 @@ entities: pos: -29.5,10.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable - uid: 2 type: DisposalBend components: @@ -149,16 +157,24 @@ entities: pos: -28.5,10.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable - uid: 3 type: DisposalBend components: - parent: 15 pos: -8.5,-14.5 type: Transform - - Anchored: True - type: Physics + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable - uid: 4 type: DisposalPipe components: @@ -166,8 +182,12 @@ entities: pos: -7.5,-14.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable - uid: 5 type: DisposalPipe components: @@ -175,8 +195,12 @@ entities: pos: -6.5,-14.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable - uid: 6 type: DisposalTrunk components: @@ -184,8 +208,12 @@ entities: pos: -5.5,-14.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable - uid: 7 type: DisposalUnit components: @@ -193,8 +221,12 @@ entities: pos: -5.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable - uid: 8 type: DisposalPipe components: @@ -202,48 +234,72 @@ entities: pos: -9.5,-15.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable - uid: 9 type: DisposalPipe components: - parent: 15 pos: -15.5,-15.5 type: Transform - - Anchored: True - type: Physics + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable - uid: 10 type: DisposalPipe components: - parent: 15 pos: -13.5,-15.5 type: Transform - - Anchored: True - type: Physics + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable - uid: 11 type: DisposalPipe components: - parent: 15 pos: -14.5,-15.5 type: Transform - - Anchored: True - type: Physics + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable - uid: 12 type: DisposalPipe components: - parent: 15 pos: -12.5,-15.5 type: Transform - - Anchored: True - type: Physics + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable - uid: 13 type: DisposalPipe components: - parent: 15 pos: -11.5,-15.5 type: Transform - - Anchored: True - type: Physics + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable - uid: 14 type: DisposalPipe components: @@ -251,8 +307,12 @@ entities: pos: -10.5,-16.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable - uid: 15 components: - parent: null @@ -270,12 +330,6 @@ entities: pos: 28.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 17 type: Wire components: @@ -283,12 +337,6 @@ entities: pos: 27.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 18 type: Wire components: @@ -296,12 +344,6 @@ entities: pos: 26.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 19 type: Wire components: @@ -309,12 +351,6 @@ entities: pos: 25.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 20 type: Wire components: @@ -322,12 +358,6 @@ entities: pos: 24.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 21 type: Wire components: @@ -335,12 +365,6 @@ entities: pos: 23.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 22 type: Wire components: @@ -348,12 +372,6 @@ entities: pos: 22.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 23 type: Wire components: @@ -361,12 +379,6 @@ entities: pos: 21.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 24 type: Wire components: @@ -374,12 +386,6 @@ entities: pos: 20.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 25 type: Wire components: @@ -387,12 +393,6 @@ entities: pos: 19.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 26 type: Wire components: @@ -400,12 +400,6 @@ entities: pos: 18.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 27 type: Wire components: @@ -413,12 +407,6 @@ entities: pos: 17.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 28 type: Wire components: @@ -426,12 +414,6 @@ entities: pos: 16.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 29 type: Wire components: @@ -439,12 +421,6 @@ entities: pos: 15.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 30 type: Wire components: @@ -452,12 +428,6 @@ entities: pos: 14.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 31 type: Wire components: @@ -465,12 +435,6 @@ entities: pos: 13.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 32 type: Wire components: @@ -478,12 +442,6 @@ entities: pos: 12.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 33 type: Wire components: @@ -491,12 +449,6 @@ entities: pos: 11.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 34 type: Wire components: @@ -504,12 +456,6 @@ entities: pos: 10.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 35 type: Wire components: @@ -517,12 +463,6 @@ entities: pos: 9.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 36 type: Wire components: @@ -530,12 +470,6 @@ entities: pos: 8.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 37 type: Wire components: @@ -543,12 +477,6 @@ entities: pos: 7.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 38 type: Wire components: @@ -556,12 +484,6 @@ entities: pos: 6.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 39 type: Wire components: @@ -569,12 +491,6 @@ entities: pos: 5.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 40 type: Wire components: @@ -582,12 +498,6 @@ entities: pos: 4.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 41 type: Wire components: @@ -595,12 +505,6 @@ entities: pos: 3.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 42 type: Wire components: @@ -608,12 +512,6 @@ entities: pos: 2.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 43 type: Wire components: @@ -621,12 +519,6 @@ entities: pos: 1.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 44 type: Wire components: @@ -634,12 +526,6 @@ entities: pos: 0.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 45 type: Wire components: @@ -647,12 +533,6 @@ entities: pos: -0.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 46 type: Wire components: @@ -660,12 +540,6 @@ entities: pos: -1.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 47 type: Wire components: @@ -673,12 +547,6 @@ entities: pos: -2.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 48 type: Wire components: @@ -686,12 +554,6 @@ entities: pos: -3.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 49 type: Wire components: @@ -699,12 +561,6 @@ entities: pos: -4.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 50 type: Wire components: @@ -712,12 +568,6 @@ entities: pos: -5.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 51 type: Wire components: @@ -725,12 +575,6 @@ entities: pos: -6.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 52 type: Wire components: @@ -738,12 +582,6 @@ entities: pos: -7.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 53 type: Wire components: @@ -751,12 +589,6 @@ entities: pos: -8.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 54 type: Wire components: @@ -764,12 +596,6 @@ entities: pos: -9.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 55 type: Wire components: @@ -777,12 +603,6 @@ entities: pos: -10.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 56 type: Wire components: @@ -790,12 +610,6 @@ entities: pos: -11.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 57 type: Wire components: @@ -803,12 +617,6 @@ entities: pos: -12.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 58 type: Wire components: @@ -816,12 +624,6 @@ entities: pos: -13.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 59 type: Wire components: @@ -829,12 +631,6 @@ entities: pos: -14.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 60 type: Wire components: @@ -842,12 +638,6 @@ entities: pos: -15.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 61 type: Wire components: @@ -855,12 +645,6 @@ entities: pos: -16.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 62 type: Wire components: @@ -868,12 +652,6 @@ entities: pos: -17.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 63 type: Wire components: @@ -881,12 +659,6 @@ entities: pos: -18.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 64 type: Wire components: @@ -894,12 +666,6 @@ entities: pos: -19.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 65 type: Wire components: @@ -907,12 +673,6 @@ entities: pos: -20.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 66 type: Wire components: @@ -920,12 +680,6 @@ entities: pos: -21.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 67 type: Wire components: @@ -933,12 +687,6 @@ entities: pos: -22.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 68 type: Wire components: @@ -946,12 +694,6 @@ entities: pos: -23.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 69 type: Wire components: @@ -959,12 +701,6 @@ entities: pos: -24.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 70 type: Wire components: @@ -972,12 +708,6 @@ entities: pos: -25.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 71 type: Wire components: @@ -985,12 +715,6 @@ entities: pos: -26.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 72 type: Wire components: @@ -998,12 +722,6 @@ entities: pos: -27.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 73 type: Wire components: @@ -1011,12 +729,6 @@ entities: pos: -28.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 74 type: Wire components: @@ -1024,12 +736,6 @@ entities: pos: -29.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 75 type: Wire components: @@ -1037,12 +743,6 @@ entities: pos: -30.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 76 type: Wire components: @@ -1050,12 +750,6 @@ entities: pos: -31.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 77 type: Wire components: @@ -1063,12 +757,6 @@ entities: pos: -32.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 78 type: Wire components: @@ -1076,12 +764,6 @@ entities: pos: -33.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 79 type: Wire components: @@ -1089,12 +771,6 @@ entities: pos: -34.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 80 type: Wire components: @@ -1102,12 +778,6 @@ entities: pos: -35.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 81 type: Wire components: @@ -1115,12 +785,6 @@ entities: pos: -36.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 82 type: Wire components: @@ -1128,12 +792,6 @@ entities: pos: 3.5,5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 83 type: Wire components: @@ -1141,12 +799,6 @@ entities: pos: 3.5,6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 84 type: Wire components: @@ -1154,12 +806,6 @@ entities: pos: 3.5,7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 85 type: Wire components: @@ -1167,12 +813,6 @@ entities: pos: 3.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 86 type: Wire components: @@ -1180,12 +820,6 @@ entities: pos: 3.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 87 type: Wire components: @@ -1193,12 +827,6 @@ entities: pos: 3.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 88 type: Wire components: @@ -1206,12 +834,6 @@ entities: pos: 3.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 89 type: Wire components: @@ -1219,12 +841,6 @@ entities: pos: 3.5,12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 90 type: Wire components: @@ -1232,12 +848,6 @@ entities: pos: 3.5,13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 91 type: Wire components: @@ -1245,12 +855,6 @@ entities: pos: 3.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 92 type: Wire components: @@ -1258,12 +862,6 @@ entities: pos: 3.5,15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 93 type: Wire components: @@ -1271,12 +869,6 @@ entities: pos: 3.5,16.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 94 type: Wire components: @@ -1284,12 +876,6 @@ entities: pos: 3.5,17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 95 type: Wire components: @@ -1297,12 +883,6 @@ entities: pos: 3.5,18.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 96 type: Wire components: @@ -1310,12 +890,6 @@ entities: pos: 3.5,19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 97 type: Wire components: @@ -1323,12 +897,6 @@ entities: pos: 3.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 98 type: Wire components: @@ -1336,12 +904,6 @@ entities: pos: 3.5,3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 99 type: Wire components: @@ -1349,12 +911,6 @@ entities: pos: 3.5,2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 100 type: Wire components: @@ -1362,12 +918,6 @@ entities: pos: 3.5,1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 101 type: Wire components: @@ -1375,12 +925,6 @@ entities: pos: 3.5,0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 102 type: Wire components: @@ -1388,12 +932,6 @@ entities: pos: 3.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 103 type: Wire components: @@ -1401,12 +939,6 @@ entities: pos: 3.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 104 type: Wire components: @@ -1414,12 +946,6 @@ entities: pos: 3.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 105 type: Wire components: @@ -1427,12 +953,6 @@ entities: pos: 3.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 106 type: Wire components: @@ -1440,12 +960,6 @@ entities: pos: 3.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 107 type: Wire components: @@ -1453,12 +967,6 @@ entities: pos: 3.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 108 type: Wire components: @@ -1466,12 +974,6 @@ entities: pos: 3.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 109 type: Wire components: @@ -1479,12 +981,6 @@ entities: pos: 3.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 110 type: Wire components: @@ -1492,12 +988,6 @@ entities: pos: 3.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 111 type: Wire components: @@ -1505,12 +995,6 @@ entities: pos: 3.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 112 type: Wire components: @@ -1518,12 +1002,6 @@ entities: pos: 3.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 113 type: Wire components: @@ -1531,12 +1009,6 @@ entities: pos: 3.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 114 type: Wire components: @@ -1544,12 +1016,6 @@ entities: pos: 3.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 115 type: Wire components: @@ -1557,12 +1023,6 @@ entities: pos: 3.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 116 type: Wire components: @@ -1570,12 +1030,6 @@ entities: pos: 3.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 117 type: Wire components: @@ -1583,12 +1037,6 @@ entities: pos: 3.5,-15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 118 type: Wire components: @@ -1596,12 +1044,6 @@ entities: pos: 3.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 119 type: Wire components: @@ -1609,12 +1051,6 @@ entities: pos: 3.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 120 type: Wire components: @@ -1622,12 +1058,6 @@ entities: pos: 3.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 121 type: Wire components: @@ -1635,12 +1065,6 @@ entities: pos: 3.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 122 type: Wire components: @@ -1648,12 +1072,6 @@ entities: pos: 3.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 123 type: Wire components: @@ -1661,12 +1079,6 @@ entities: pos: 3.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 124 type: Wire components: @@ -1674,12 +1086,6 @@ entities: pos: 3.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 125 type: Wire components: @@ -1687,12 +1093,6 @@ entities: pos: 3.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 126 type: Wire components: @@ -1700,12 +1100,6 @@ entities: pos: 7.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 127 type: Wire components: @@ -1713,12 +1107,6 @@ entities: pos: 5.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 128 type: Wire components: @@ -1726,12 +1114,6 @@ entities: pos: 4.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 129 type: Wire components: @@ -1739,12 +1121,6 @@ entities: pos: 6.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 130 type: Wire components: @@ -1752,12 +1128,6 @@ entities: pos: 7.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 131 type: Wire components: @@ -1765,12 +1135,6 @@ entities: pos: 8.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 132 type: Wire components: @@ -1778,12 +1142,6 @@ entities: pos: 9.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 133 type: Wire components: @@ -1791,12 +1149,6 @@ entities: pos: 10.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 134 type: Wire components: @@ -1804,12 +1156,6 @@ entities: pos: 11.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 135 type: Wire components: @@ -1817,12 +1163,6 @@ entities: pos: 12.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 136 type: Wire components: @@ -1830,12 +1170,6 @@ entities: pos: 13.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 137 type: Wire components: @@ -1843,12 +1177,6 @@ entities: pos: 14.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 138 type: Wire components: @@ -1856,12 +1184,6 @@ entities: pos: 18.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 139 type: Wire components: @@ -1869,12 +1191,6 @@ entities: pos: 17.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 140 type: Wire components: @@ -1882,12 +1198,6 @@ entities: pos: 16.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 141 type: Wire components: @@ -1895,12 +1205,6 @@ entities: pos: 15.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 142 type: Wire components: @@ -1908,12 +1212,6 @@ entities: pos: 14.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 143 type: Wire components: @@ -1921,12 +1219,6 @@ entities: pos: 14.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 144 type: Wire components: @@ -1934,12 +1226,6 @@ entities: pos: 14.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 145 type: Wire components: @@ -1947,12 +1233,6 @@ entities: pos: 22.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 146 type: Wire components: @@ -1960,12 +1240,6 @@ entities: pos: 22.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 147 type: Wire components: @@ -1973,12 +1247,6 @@ entities: pos: 22.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 148 type: Wire components: @@ -1986,12 +1254,6 @@ entities: pos: 22.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 149 type: Wire components: @@ -1999,12 +1261,6 @@ entities: pos: 23.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 150 type: Wire components: @@ -2012,12 +1268,6 @@ entities: pos: 24.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 151 type: Wire components: @@ -2025,12 +1275,6 @@ entities: pos: 25.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 152 type: Wire components: @@ -2038,12 +1282,6 @@ entities: pos: 26.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 153 type: Wire components: @@ -2051,12 +1289,6 @@ entities: pos: 26.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 154 type: Wire components: @@ -2064,12 +1296,6 @@ entities: pos: 26.5,-15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 155 type: Wire components: @@ -2077,12 +1303,6 @@ entities: pos: 26.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 156 type: Wire components: @@ -2090,12 +1310,6 @@ entities: pos: 26.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 157 type: Wire components: @@ -2103,12 +1317,6 @@ entities: pos: 26.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 158 type: Wire components: @@ -2116,12 +1324,6 @@ entities: pos: 26.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 159 type: Catwalk components: @@ -2136,12 +1338,6 @@ entities: pos: 26.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 161 type: Wire components: @@ -2149,12 +1345,6 @@ entities: pos: 26.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 162 type: Wire components: @@ -2162,12 +1352,6 @@ entities: pos: 26.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 163 type: Wire components: @@ -2175,12 +1359,6 @@ entities: pos: 26.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 164 type: Wire components: @@ -2188,12 +1366,6 @@ entities: pos: 26.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 165 type: Wire components: @@ -2201,12 +1373,6 @@ entities: pos: 26.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 166 type: Wire components: @@ -2214,12 +1380,6 @@ entities: pos: 26.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 167 type: Wire components: @@ -2227,12 +1387,6 @@ entities: pos: 26.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 168 type: Wire components: @@ -2240,12 +1394,6 @@ entities: pos: 26.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 169 type: Wire components: @@ -2253,12 +1401,6 @@ entities: pos: 25.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 170 type: Wire components: @@ -2266,12 +1408,6 @@ entities: pos: 24.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 171 type: Wire components: @@ -2279,12 +1415,6 @@ entities: pos: 23.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 172 type: Wire components: @@ -2292,12 +1422,6 @@ entities: pos: 22.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 173 type: Wire components: @@ -2305,12 +1429,6 @@ entities: pos: 21.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 174 type: Wire components: @@ -2318,12 +1436,6 @@ entities: pos: 20.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 175 type: Wire components: @@ -2331,12 +1443,6 @@ entities: pos: 20.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 176 type: Wire components: @@ -2344,12 +1450,6 @@ entities: pos: 20.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 177 type: Wire components: @@ -2357,12 +1457,6 @@ entities: pos: 20.5,0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 178 type: Wire components: @@ -2370,12 +1464,6 @@ entities: pos: 20.5,1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 179 type: Wire components: @@ -2383,12 +1471,6 @@ entities: pos: 21.5,1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 180 type: Wire components: @@ -2396,12 +1478,6 @@ entities: pos: 21.5,2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 181 type: Wire components: @@ -2409,12 +1485,6 @@ entities: pos: 21.5,3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 182 type: Wire components: @@ -2422,12 +1492,6 @@ entities: pos: 27.5,5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 183 type: Wire components: @@ -2435,12 +1499,6 @@ entities: pos: 27.5,6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 184 type: Wire components: @@ -2448,12 +1506,6 @@ entities: pos: 27.5,7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 185 type: Catwalk components: @@ -2482,12 +1534,6 @@ entities: pos: 25.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 189 type: Wire components: @@ -2495,12 +1541,6 @@ entities: pos: 24.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 190 type: Wire components: @@ -2508,12 +1548,6 @@ entities: pos: 23.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 191 type: Wire components: @@ -2521,12 +1555,6 @@ entities: pos: 22.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 192 type: Wire components: @@ -2534,12 +1562,6 @@ entities: pos: 21.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 193 type: Wire components: @@ -2547,12 +1569,6 @@ entities: pos: 21.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 194 type: Wire components: @@ -2560,12 +1576,6 @@ entities: pos: 20.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 195 type: Wire components: @@ -2573,12 +1583,6 @@ entities: pos: 19.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 196 type: Wire components: @@ -2586,12 +1590,6 @@ entities: pos: 18.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 197 type: Wire components: @@ -2599,12 +1597,6 @@ entities: pos: 17.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 198 type: Wire components: @@ -2612,12 +1604,6 @@ entities: pos: 16.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 199 type: Wire components: @@ -2625,12 +1611,6 @@ entities: pos: 15.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 200 type: Wire components: @@ -2638,12 +1618,6 @@ entities: pos: 14.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 201 type: Wire components: @@ -2651,12 +1625,6 @@ entities: pos: 13.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 202 type: Wire components: @@ -2664,12 +1632,6 @@ entities: pos: 13.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 203 type: Wire components: @@ -2677,12 +1639,6 @@ entities: pos: 13.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 204 type: Wire components: @@ -2690,12 +1646,6 @@ entities: pos: 13.5,7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 205 type: Wire components: @@ -2703,12 +1653,6 @@ entities: pos: 13.5,6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 206 type: Wire components: @@ -2716,12 +1660,6 @@ entities: pos: 13.5,5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 207 type: Wire components: @@ -2729,12 +1667,6 @@ entities: pos: 4.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 208 type: Wire components: @@ -2742,12 +1674,6 @@ entities: pos: 6.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 209 type: Wire components: @@ -2755,12 +1681,6 @@ entities: pos: 5.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 210 type: Wire components: @@ -2768,12 +1688,6 @@ entities: pos: 6.5,13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 211 type: Wire components: @@ -2781,12 +1695,6 @@ entities: pos: 7.5,13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 212 type: Wire components: @@ -2794,12 +1702,6 @@ entities: pos: 8.5,13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 213 type: Wire components: @@ -2807,12 +1709,6 @@ entities: pos: 8.5,12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 214 type: Wire components: @@ -2820,12 +1716,6 @@ entities: pos: 8.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 215 type: Wire components: @@ -2833,12 +1723,6 @@ entities: pos: 9.5,13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 216 type: Wire components: @@ -2846,12 +1730,6 @@ entities: pos: 10.5,13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 217 type: Wire components: @@ -2859,12 +1737,6 @@ entities: pos: 10.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 218 type: Wire components: @@ -2872,12 +1744,6 @@ entities: pos: 11.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 219 type: Wire components: @@ -2885,12 +1751,6 @@ entities: pos: 12.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 220 type: Wire components: @@ -2898,12 +1758,6 @@ entities: pos: 12.5,15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 221 type: Wire components: @@ -2911,12 +1765,6 @@ entities: pos: 12.5,16.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 222 type: Wire components: @@ -2924,12 +1772,6 @@ entities: pos: 12.5,17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 223 type: Wire components: @@ -2937,12 +1779,6 @@ entities: pos: 12.5,18.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 224 type: Wire components: @@ -2950,12 +1786,6 @@ entities: pos: 12.5,19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 225 type: Wire components: @@ -2963,12 +1793,6 @@ entities: pos: 12.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 226 type: Wire components: @@ -2976,12 +1800,6 @@ entities: pos: 11.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 227 type: Wire components: @@ -2989,12 +1807,6 @@ entities: pos: 10.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 228 type: Wire components: @@ -3002,12 +1814,6 @@ entities: pos: 26.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 229 type: Wire components: @@ -3015,12 +1821,6 @@ entities: pos: 26.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 230 type: Wire components: @@ -3028,12 +1828,6 @@ entities: pos: 27.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 231 type: Wire components: @@ -3041,12 +1835,6 @@ entities: pos: 2.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 232 type: Wire components: @@ -3054,12 +1842,6 @@ entities: pos: 1.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 233 type: Wire components: @@ -3067,12 +1849,6 @@ entities: pos: 0.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 234 type: Wire components: @@ -3080,12 +1856,6 @@ entities: pos: -0.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 235 type: Wire components: @@ -3093,12 +1863,6 @@ entities: pos: 2.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 236 type: Wire components: @@ -3106,12 +1870,6 @@ entities: pos: 1.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 237 type: Wire components: @@ -3119,12 +1877,6 @@ entities: pos: 0.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 238 type: Wire components: @@ -3132,12 +1884,6 @@ entities: pos: -0.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 239 type: Wire components: @@ -3145,12 +1891,6 @@ entities: pos: -1.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 240 type: Wire components: @@ -3158,12 +1898,6 @@ entities: pos: -2.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 241 type: Wire components: @@ -3171,12 +1905,6 @@ entities: pos: -3.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 242 type: Wire components: @@ -3184,12 +1912,6 @@ entities: pos: -4.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 243 type: Wire components: @@ -3197,12 +1919,6 @@ entities: pos: -5.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 244 type: Wire components: @@ -3210,12 +1926,6 @@ entities: pos: -6.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 245 type: Wire components: @@ -3223,12 +1933,6 @@ entities: pos: -7.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 246 type: Wire components: @@ -3236,12 +1940,6 @@ entities: pos: -8.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 247 type: Wire components: @@ -3249,12 +1947,6 @@ entities: pos: -9.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 248 type: Wire components: @@ -3262,12 +1954,6 @@ entities: pos: -10.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 249 type: Wire components: @@ -3275,12 +1961,6 @@ entities: pos: -11.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 250 type: Wire components: @@ -3288,12 +1968,6 @@ entities: pos: -8.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 251 type: Wire components: @@ -3301,12 +1975,6 @@ entities: pos: -8.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 252 type: Wire components: @@ -3314,12 +1982,6 @@ entities: pos: -8.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 253 type: Wire components: @@ -3327,12 +1989,6 @@ entities: pos: -9.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 254 type: Wire components: @@ -3340,12 +1996,6 @@ entities: pos: -11.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 255 type: Wire components: @@ -3353,12 +2003,6 @@ entities: pos: -11.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 256 type: Wire components: @@ -3366,12 +2010,6 @@ entities: pos: -11.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 257 type: Wire components: @@ -3379,12 +2017,6 @@ entities: pos: -11.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 258 type: Wire components: @@ -3392,12 +2024,6 @@ entities: pos: -11.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 259 type: Wire components: @@ -3405,12 +2031,6 @@ entities: pos: -11.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 260 type: Wire components: @@ -3418,12 +2038,6 @@ entities: pos: -11.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 261 type: Wire components: @@ -3431,12 +2045,6 @@ entities: pos: -10.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 262 type: Wire components: @@ -3444,12 +2052,6 @@ entities: pos: -9.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 263 type: Wire components: @@ -3457,12 +2059,6 @@ entities: pos: -8.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 264 type: Wire components: @@ -3470,12 +2066,6 @@ entities: pos: -7.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 265 type: Wire components: @@ -3483,12 +2073,6 @@ entities: pos: -6.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 266 type: Wire components: @@ -3496,12 +2080,6 @@ entities: pos: -5.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 267 type: Wire components: @@ -3509,12 +2087,6 @@ entities: pos: -4.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 268 type: Wire components: @@ -3522,12 +2094,6 @@ entities: pos: -3.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 269 type: Wire components: @@ -3535,12 +2101,6 @@ entities: pos: -2.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 270 type: Wire components: @@ -3548,12 +2108,6 @@ entities: pos: -1.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 271 type: Wire components: @@ -3561,12 +2115,6 @@ entities: pos: -0.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 272 type: Wire components: @@ -3574,12 +2122,6 @@ entities: pos: -0.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 273 type: Wire components: @@ -3587,12 +2129,6 @@ entities: pos: -0.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 274 type: Catwalk components: @@ -3691,12 +2227,6 @@ entities: pos: -12.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 288 type: Wire components: @@ -3704,12 +2234,6 @@ entities: pos: -13.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 289 type: Wire components: @@ -3717,12 +2241,6 @@ entities: pos: -14.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 290 type: Wire components: @@ -3730,12 +2248,6 @@ entities: pos: -15.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 291 type: Wire components: @@ -3743,12 +2255,6 @@ entities: pos: -16.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 292 type: Wire components: @@ -3756,12 +2262,6 @@ entities: pos: -16.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 293 type: Wire components: @@ -3769,12 +2269,6 @@ entities: pos: -16.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 294 type: Wire components: @@ -3782,12 +2276,6 @@ entities: pos: -16.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 295 type: Wire components: @@ -3795,12 +2283,6 @@ entities: pos: -16.5,-15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 296 type: Wire components: @@ -3808,12 +2290,6 @@ entities: pos: -16.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 297 type: Wire components: @@ -3821,12 +2297,6 @@ entities: pos: 2.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 298 type: Wire components: @@ -3834,865 +2304,527 @@ entities: pos: 1.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 304 +- uid: 299 type: APC components: - parent: 15 pos: -19.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 305 +- uid: 300 type: Table components: - parent: 15 pos: 30.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 307 +- uid: 301 type: Wire components: - parent: 15 pos: -3.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 308 +- uid: 302 type: Wire components: - parent: 15 pos: -1.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 309 +- uid: 303 type: Wire components: - parent: 15 pos: -2.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 310 +- uid: 304 type: Catwalk components: - parent: 15 pos: 29.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 311 +- uid: 305 type: Wire components: - parent: 15 pos: -7.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 312 +- uid: 306 type: Catwalk components: - parent: 15 pos: 33.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 313 +- uid: 307 type: Wire components: - parent: 15 pos: -6.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 314 +- uid: 308 type: Wire components: - parent: 15 pos: -5.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 315 +- uid: 309 type: Catwalk components: - parent: 15 pos: 28.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 316 +- uid: 310 type: Wire components: - parent: 15 pos: -9.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 317 +- uid: 311 type: Wire components: - parent: 15 pos: -10.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 318 +- uid: 312 type: Wire components: - parent: 15 pos: -11.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 319 +- uid: 313 type: Wire components: - parent: 15 pos: -12.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 320 +- uid: 314 type: Wire components: - parent: 15 pos: -13.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 321 +- uid: 315 type: Wire components: - parent: 15 pos: -14.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 322 +- uid: 316 type: Wire components: - parent: 15 pos: -15.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 323 +- uid: 317 type: Wire components: - parent: 15 pos: -13.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 324 +- uid: 318 type: Wire components: - parent: 15 pos: -13.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 325 +- uid: 319 type: Catwalk components: - parent: 15 pos: 27.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 326 +- uid: 320 type: Wire components: - parent: 15 pos: -9.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 327 +- uid: 321 type: Wire components: - parent: 15 pos: -9.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 328 +- uid: 322 type: Wire components: - parent: 15 pos: -9.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 329 +- uid: 323 type: Wire components: - parent: 15 pos: -9.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 330 +- uid: 324 type: Wire components: - parent: 15 pos: -32.5,3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 331 +- uid: 325 type: Wire components: - parent: 15 pos: -32.5,2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 332 +- uid: 326 type: Wire components: - parent: 15 pos: -32.5,1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 333 +- uid: 327 type: Wire components: - parent: 15 pos: -32.5,0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 334 +- uid: 328 type: LockerElectricalSupplies components: - parent: 15 pos: 39.5,9.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 335 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 329 type: Catwalk components: - parent: 15 pos: 47.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 336 +- uid: 330 type: Table components: - parent: 15 pos: -12.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 337 +- uid: 331 type: Chair components: - parent: 15 pos: 28.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 338 + - anchored: False + type: Collidable +- uid: 332 type: Chair components: - parent: 15 pos: 26.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 339 + - anchored: False + type: Collidable +- uid: 333 type: Wire components: - parent: 15 pos: -33.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 340 +- uid: 334 type: Wire components: - parent: 15 pos: -33.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 341 +- uid: 335 type: Wire components: - parent: 15 pos: -34.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 342 +- uid: 336 type: Wire components: - parent: 15 pos: -35.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 343 +- uid: 337 type: Wire components: - parent: 15 pos: -31.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 344 +- uid: 338 type: Wire components: - parent: 15 pos: -30.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 345 +- uid: 339 type: Wire components: - parent: 15 pos: -29.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 346 +- uid: 340 type: Wire components: - parent: 15 pos: -28.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 347 +- uid: 341 type: Wire components: - parent: 15 pos: -27.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 348 +- uid: 342 type: Wire components: - parent: 15 pos: -26.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 349 +- uid: 343 type: Wire components: - parent: 15 pos: -25.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 350 +- uid: 344 type: Wire components: - parent: 15 pos: -24.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 351 +- uid: 345 type: Wire components: - parent: 15 pos: -23.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 352 +- uid: 346 type: Wire components: - parent: 15 pos: -23.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 353 +- uid: 347 type: Wire components: - parent: 15 pos: -23.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 354 +- uid: 348 type: Wire components: - parent: 15 pos: -22.5,10.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 355 +- uid: 349 type: APC components: - parent: 15 pos: -30.5,8.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 356 +- uid: 350 type: APC components: - parent: 15 pos: -22.5,10.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - startingCharge: 9806.396 type: Battery -- uid: 358 +- uid: 351 type: Wire components: - parent: 15 pos: -23.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 359 +- uid: 352 type: Wire components: - parent: 15 pos: -23.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 360 +- uid: 353 type: Wire components: - parent: 15 pos: -23.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 361 +- uid: 354 type: Wire components: - parent: 15 pos: -24.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 362 +- uid: 355 type: Wire components: - parent: 15 pos: -25.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 363 +- uid: 356 type: Wire components: - parent: 15 pos: -26.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 364 +- uid: 357 type: Wire components: - parent: 15 pos: -27.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 365 +- uid: 358 type: Wire components: - parent: 15 pos: -28.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 366 +- uid: 359 type: Window components: - parent: 15 pos: -18.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 367 +- uid: 360 type: Window components: - parent: 15 pos: -19.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 368 +- uid: 361 type: LowWall components: - parent: 15 pos: -19.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 369 +- uid: 362 type: LowWall components: - parent: 15 pos: -18.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 370 +- uid: 363 type: Wire components: - parent: 15 pos: -23.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 371 +- uid: 364 type: Wire components: - parent: 15 pos: -23.5,0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 372 +- uid: 365 type: Wire components: - parent: 15 pos: -23.5,1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 373 +- uid: 366 type: Wire components: - parent: 15 pos: -23.5,2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 374 +- uid: 367 type: Wire components: - parent: 15 pos: -23.5,3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 375 +- uid: 368 type: Wire components: - parent: 15 pos: -23.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 376 +- uid: 369 type: Wire components: - parent: 15 pos: -22.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 377 +- uid: 370 type: ChairOfficeDark components: - parent: 15 pos: -6.5,20.5 rot: 3.141592653589793 rad type: Transform -- uid: 378 + - anchored: False + type: Collidable +- uid: 371 type: Poweredlight components: - parent: 15 @@ -4703,4964 +2835,2962 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 379 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 372 type: Table components: - parent: 15 pos: 10.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 380 +- uid: 373 type: Table components: - parent: 15 pos: -7.5,21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 381 +- uid: 374 type: ChairOfficeDark components: - parent: 15 pos: -11.5,8.5 rot: 3.141592653589793 rad type: Transform -- uid: 382 + - anchored: False + type: Collidable +- uid: 375 type: Chair components: - parent: 15 pos: -13.5,8.5 type: Transform -- uid: 383 + - anchored: False + type: Collidable +- uid: 376 type: Wire components: - parent: 15 pos: -23.5,5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 384 +- uid: 377 type: Wire components: - parent: 15 pos: -23.5,6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 385 +- uid: 378 type: Wire components: - parent: 15 pos: -23.5,7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 386 +- uid: 379 type: Wire components: - parent: 15 pos: -23.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 387 +- uid: 380 type: Wire components: - parent: 15 pos: -23.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 388 +- uid: 381 type: Wire components: - parent: 15 pos: -22.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 389 +- uid: 382 type: Wire components: - parent: 15 pos: -21.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 390 +- uid: 383 type: Wire components: - parent: 15 pos: -20.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 391 +- uid: 384 type: Wire components: - parent: 15 pos: -19.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 392 +- uid: 385 type: Wire components: - parent: 15 pos: -20.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 393 +- uid: 386 type: Wire components: - parent: 15 pos: -20.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 394 +- uid: 387 type: Wire components: - parent: 15 pos: -20.5,12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 395 +- uid: 388 type: Wire components: - parent: 15 pos: -20.5,13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 396 +- uid: 389 type: ComputerPowerMonitoring components: - parent: 15 pos: 29.5,-1.5 type: Transform -- uid: 397 +- uid: 390 type: LockerToolFilled components: - parent: 15 pos: 35.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 398 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 391 type: Multitool components: - parent: 15 pos: -29.340704,7.4573865 rot: -1.5707963267948966 rad type: Transform -- uid: 399 + - anchored: False + type: Collidable +- uid: 392 type: LockerToolFilled components: - parent: 15 pos: 35.5,0.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 400 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 393 type: Wire components: - parent: 15 pos: -33.5,0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 401 +- uid: 394 type: Wire components: - parent: 15 pos: -33.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 402 +- uid: 395 type: Wire components: - parent: 15 pos: -33.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 403 +- uid: 396 type: Wire components: - parent: 15 pos: -33.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 404 +- uid: 397 type: Wire components: - parent: 15 pos: -33.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 405 +- uid: 398 type: Wire components: - parent: 15 pos: -33.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 406 +- uid: 399 type: Wire components: - parent: 15 pos: -32.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 407 +- uid: 400 type: Wire components: - parent: 15 pos: -32.5,13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 408 +- uid: 401 type: Wire components: - parent: 15 pos: -32.5,12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 409 +- uid: 402 type: Wire components: - parent: 15 pos: -32.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 410 +- uid: 403 type: Wire components: - parent: 15 pos: -32.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 411 +- uid: 404 type: Wire components: - parent: 15 pos: -32.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 412 +- uid: 405 type: Wire components: - parent: 15 pos: -32.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 413 +- uid: 406 type: Wire components: - parent: 15 pos: -33.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 414 +- uid: 407 type: Wire components: - parent: 15 pos: -34.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 415 +- uid: 408 type: Wire components: - parent: 15 pos: -35.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 416 +- uid: 409 type: Wire components: - parent: 15 pos: -36.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 417 +- uid: 410 type: Wire components: - parent: 15 pos: -37.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 418 +- uid: 411 type: Wire components: - parent: 15 pos: -37.5,7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 419 +- uid: 412 type: Wire components: - parent: 15 pos: -37.5,6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 420 +- uid: 413 type: Wire components: - parent: 15 pos: -37.5,5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 421 +- uid: 414 type: Wire components: - parent: 15 pos: -37.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 422 +- uid: 415 type: Wire components: - parent: 15 pos: -19.5,13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 423 +- uid: 416 type: Wire components: - parent: 15 pos: -18.5,13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 424 +- uid: 417 type: Wire components: - parent: 15 pos: -17.5,13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 425 +- uid: 418 type: Wire components: - parent: 15 pos: -17.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 426 +- uid: 419 type: Wire components: - parent: 15 pos: -17.5,15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 427 +- uid: 420 type: Wire components: - parent: 15 pos: -18.5,15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 428 +- uid: 421 type: Wire components: - parent: 15 pos: -18.5,16.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 429 +- uid: 422 type: Wire components: - parent: 15 pos: -18.5,17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 430 +- uid: 423 type: Wire components: - parent: 15 pos: -18.5,18.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 431 +- uid: 424 type: Wire components: - parent: 15 pos: -18.5,19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 432 +- uid: 425 type: Wire components: - parent: 15 pos: -18.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 433 +- uid: 426 type: Wire components: - parent: 15 pos: -18.5,21.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 434 +- uid: 427 type: Wire components: - parent: 15 pos: -18.5,22.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 435 +- uid: 428 type: Wire components: - parent: 15 pos: -18.5,23.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 436 +- uid: 429 type: Wire components: - parent: 15 pos: -18.5,24.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 437 +- uid: 430 type: Wire components: - parent: 15 pos: -18.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 438 +- uid: 431 type: Wire components: - parent: 15 pos: -17.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 439 +- uid: 432 type: Wire components: - parent: 15 pos: -16.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 440 +- uid: 433 type: Wire components: - parent: 15 pos: -15.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 441 +- uid: 434 type: Wire components: - parent: 15 pos: -14.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 442 +- uid: 435 type: Wire components: - parent: 15 pos: -13.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 443 +- uid: 436 type: Wire components: - parent: 15 pos: -12.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 444 +- uid: 437 type: Wire components: - parent: 15 pos: -11.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 445 +- uid: 438 type: Wire components: - parent: 15 pos: -10.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 446 +- uid: 439 type: Wire components: - parent: 15 pos: -9.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 447 +- uid: 440 type: Wire components: - parent: 15 pos: -8.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 448 +- uid: 441 type: Wire components: - parent: 15 pos: -7.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 449 +- uid: 442 type: Wire components: - parent: 15 pos: -7.5,24.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 450 +- uid: 443 type: Wire components: - parent: 15 pos: -6.5,24.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 451 +- uid: 444 type: Wire components: - parent: 15 pos: -5.5,24.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 452 +- uid: 445 type: Wire components: - parent: 15 pos: -4.5,24.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 453 +- uid: 446 type: Wire components: - parent: 15 pos: -4.5,23.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 454 +- uid: 447 type: Wire components: - parent: 15 pos: -4.5,22.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 455 +- uid: 448 type: Wire components: - parent: 15 pos: -4.5,21.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 456 +- uid: 449 type: Wire components: - parent: 15 pos: -3.5,21.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 457 +- uid: 450 type: Wire components: - parent: 15 pos: -2.5,21.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 458 +- uid: 451 type: Wire components: - parent: 15 pos: -1.5,21.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 459 +- uid: 452 type: Wire components: - parent: 15 pos: -0.5,21.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 460 +- uid: 453 type: Wire components: - parent: 15 pos: -0.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 461 +- uid: 454 type: Wire components: - parent: 15 pos: 0.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 462 +- uid: 455 type: Wire components: - parent: 15 pos: 1.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 463 +- uid: 456 type: Wire components: - parent: 15 pos: 2.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 464 +- uid: 457 type: Wire components: - parent: 15 pos: 2.5,21.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 465 +- uid: 458 type: Wire components: - parent: 15 pos: 2.5,22.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 466 +- uid: 459 type: Wire components: - parent: 15 pos: 2.5,23.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 467 +- uid: 460 type: Wire components: - parent: 15 pos: 2.5,24.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 468 +- uid: 461 type: Wire components: - parent: 15 pos: 2.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 469 +- uid: 462 type: Wire components: - parent: 15 pos: 2.5,26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 470 +- uid: 463 type: Wire components: - parent: 15 pos: 2.5,27.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 471 +- uid: 464 type: Wire components: - parent: 15 pos: 2.5,28.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 472 +- uid: 465 type: Wire components: - parent: 15 pos: 0.5,27.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 473 +- uid: 466 type: Wire components: - parent: 15 pos: 0.5,28.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 474 +- uid: 467 type: APC components: - parent: 15 pos: 0.5,27.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 475 +- uid: 468 type: APC components: - parent: 15 pos: 7.5,27.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 476 +- uid: 469 type: Wire components: - parent: 15 pos: 1.5,28.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 477 +- uid: 470 type: Wire components: - parent: 15 pos: 3.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 478 +- uid: 471 type: Wire components: - parent: 15 pos: 4.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 479 +- uid: 472 type: Wire components: - parent: 15 pos: 5.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 480 +- uid: 473 type: Wire components: - parent: 15 pos: 6.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 481 +- uid: 474 type: Wire components: - parent: 15 pos: 7.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 482 +- uid: 475 type: Wire components: - parent: 15 pos: -6.5,5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 483 +- uid: 476 type: Wire components: - parent: 15 pos: -6.5,6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 484 +- uid: 477 type: Wire components: - parent: 15 pos: -6.5,7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 485 +- uid: 478 type: Wire components: - parent: 15 pos: -6.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 486 +- uid: 479 type: Wire components: - parent: 15 pos: -6.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 487 +- uid: 480 type: Wire components: - parent: 15 pos: -6.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 488 +- uid: 481 type: Wire components: - parent: 15 pos: -6.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 489 +- uid: 482 type: Wire components: - parent: 15 pos: -16.5,5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 490 +- uid: 483 type: Wire components: - parent: 15 pos: -16.5,6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 491 +- uid: 484 type: Wire components: - parent: 15 pos: -16.5,7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 492 +- uid: 485 type: Wire components: - parent: 15 pos: -17.5,7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 493 +- uid: 486 type: Wire components: - parent: 15 pos: -17.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 494 +- uid: 487 type: Wire components: - parent: 15 pos: -17.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 495 +- uid: 488 type: Wire components: - parent: 15 pos: -17.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 496 +- uid: 489 type: Wire components: - parent: 15 pos: -17.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 497 +- uid: 490 type: Wire components: - parent: 15 pos: -17.5,12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 498 +- uid: 491 type: Wire components: - parent: 15 pos: -16.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 499 +- uid: 492 type: Wire components: - parent: 15 pos: -15.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 500 +- uid: 493 type: Wire components: - parent: 15 pos: -14.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 501 +- uid: 494 type: Wire components: - parent: 15 pos: -13.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 502 +- uid: 495 type: Wire components: - parent: 15 pos: -12.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 503 +- uid: 496 type: Wire components: - parent: 15 pos: -11.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 504 +- uid: 497 type: Wire components: - parent: 15 pos: -10.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 505 +- uid: 498 type: Wire components: - parent: 15 pos: -9.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 506 +- uid: 499 type: Wire components: - parent: 15 pos: -8.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 507 +- uid: 500 type: Wire components: - parent: 15 pos: -7.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 508 +- uid: 501 type: Wire components: - parent: 15 pos: -6.5,12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 509 +- uid: 502 type: Wire components: - parent: 15 pos: -6.5,13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 510 +- uid: 503 type: Wire components: - parent: 15 pos: -6.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 511 +- uid: 504 type: Wire components: - parent: 15 pos: -6.5,15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 512 +- uid: 505 type: Wire components: - parent: 15 pos: -7.5,15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 513 +- uid: 506 type: Wire components: - parent: 15 pos: -8.5,15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 514 +- uid: 507 type: Wire components: - parent: 15 pos: -9.5,15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 515 +- uid: 508 type: Wire components: - parent: 15 pos: -10.5,15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 516 +- uid: 509 type: Wire components: - parent: 15 pos: -11.5,15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 517 +- uid: 510 type: Wire components: - parent: 15 pos: -12.5,15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 518 +- uid: 511 type: Wire components: - parent: 15 pos: 1.5,11.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 519 +- uid: 512 type: APC components: - parent: 15 pos: 1.5,11.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 520 +- uid: 513 type: Wire components: - parent: 15 pos: -5.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 521 +- uid: 514 type: Wire components: - parent: 15 pos: -4.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 522 +- uid: 515 type: Wire components: - parent: 15 pos: -3.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 523 +- uid: 516 type: Wire components: - parent: 15 pos: -2.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 524 +- uid: 517 type: Wire components: - parent: 15 pos: -1.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 525 +- uid: 518 type: Wire components: - parent: 15 pos: -0.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 526 +- uid: 519 type: Wire components: - parent: 15 pos: 0.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 527 +- uid: 520 type: Wire components: - parent: 15 pos: -8.5,16.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 528 +- uid: 521 type: Wire components: - parent: 15 pos: -8.5,17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 529 +- uid: 522 type: Wire components: - parent: 15 pos: -8.5,18.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 530 +- uid: 523 type: Wire components: - parent: 15 pos: -8.5,19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 531 +- uid: 524 type: Wire components: - parent: 15 pos: -8.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 532 +- uid: 525 type: Catwalk components: - parent: 15 pos: 7.5,-19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 533 +- uid: 526 type: Catwalk components: - parent: 15 pos: 14.5,-19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 534 +- uid: 527 type: Catwalk components: - parent: 15 pos: 21.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 535 +- uid: 528 type: Catwalk components: - parent: 15 pos: 26.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 536 +- uid: 529 type: APC components: - parent: 15 pos: -9.5,26.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 537 +- uid: 530 type: Wire components: - parent: 15 pos: -15.5,15.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 538 +- uid: 531 type: APC components: - parent: 15 pos: -15.5,15.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 539 +- uid: 532 type: Wire components: - parent: 15 pos: -14.5,15.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 540 +- uid: 533 type: Wire components: - parent: 15 pos: 2.5,17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 541 +- uid: 534 type: Wire components: - parent: 15 pos: 1.5,17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 542 +- uid: 535 type: Wire components: - parent: 15 pos: 0.5,17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 543 +- uid: 536 type: Wire components: - parent: 15 pos: -1.5,17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 544 +- uid: 537 type: Wire components: - parent: 15 pos: 29.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 545 +- uid: 538 type: Wire components: - parent: 15 pos: 29.5,5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 546 +- uid: 539 type: Wire components: - parent: 15 pos: 30.5,5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 547 +- uid: 540 type: Wire components: - parent: 15 pos: 32.5,5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 548 +- uid: 541 type: Wire components: - parent: 15 pos: 31.5,5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 549 +- uid: 542 type: Wire components: - parent: 15 pos: 33.5,5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 550 +- uid: 543 type: Wire components: - parent: 15 pos: 33.5,6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 551 +- uid: 544 type: Wire components: - parent: 15 pos: 33.5,7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 552 +- uid: 545 type: Wire components: - parent: 15 pos: 33.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 553 +- uid: 546 type: Wire components: - parent: 15 pos: 33.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 554 +- uid: 547 type: Wire components: - parent: 15 pos: 33.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 555 +- uid: 548 type: Wire components: - parent: 15 pos: 33.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 556 +- uid: 549 type: Wire components: - parent: 15 pos: 33.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 557 +- uid: 550 type: Wire components: - parent: 15 pos: 34.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 558 +- uid: 551 type: Wire components: - parent: 15 pos: 35.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 559 +- uid: 552 type: Wire components: - parent: 15 pos: 36.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 560 +- uid: 553 type: Wire components: - parent: 15 pos: 37.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 561 +- uid: 554 type: Wire components: - parent: 15 pos: 38.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 562 +- uid: 555 type: Wire components: - parent: 15 pos: 39.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 563 +- uid: 556 type: Wire components: - parent: 15 pos: 40.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 564 +- uid: 557 type: Wire components: - parent: 15 pos: 40.5,5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 565 +- uid: 558 type: Wire components: - parent: 15 pos: 40.5,6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 566 +- uid: 559 type: Wire components: - parent: 15 pos: 40.5,7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 567 +- uid: 560 type: ReinforcedWindow components: - parent: 15 pos: 51.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 568 +- uid: 561 type: Wire components: - parent: 15 pos: 38.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 569 +- uid: 562 type: Wire components: - parent: 15 pos: 37.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 570 +- uid: 563 type: Wire components: - parent: 15 pos: 39.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 571 +- uid: 564 type: Wire components: - parent: 15 pos: 38.5,3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 572 +- uid: 565 type: Wire components: - parent: 15 pos: 38.5,2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 573 +- uid: 566 type: Wire components: - parent: 15 pos: 38.5,1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 574 +- uid: 567 type: Wire components: - parent: 15 pos: 38.5,0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 575 +- uid: 568 type: Wire components: - parent: 15 pos: 38.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 576 +- uid: 569 type: Wire components: - parent: 15 pos: 33.5,3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 577 +- uid: 570 type: Wire components: - parent: 15 pos: 33.5,2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 578 +- uid: 571 type: Wire components: - parent: 15 pos: 33.5,1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 579 +- uid: 572 type: Wire components: - parent: 15 pos: 33.5,0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 580 +- uid: 573 type: Wire components: - parent: 15 pos: 33.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 581 +- uid: 574 type: Wire components: - parent: 15 pos: 33.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 582 +- uid: 575 type: Wire components: - parent: 15 pos: 33.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 583 +- uid: 576 type: Wire components: - parent: 15 pos: 33.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 584 +- uid: 577 type: Wire components: - parent: 15 pos: 33.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 585 +- uid: 578 type: Wire components: - parent: 15 pos: 33.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 586 +- uid: 579 type: Wire components: - parent: 15 pos: 33.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 587 +- uid: 580 type: Wire components: - parent: 15 pos: 33.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 588 +- uid: 581 type: Wire components: - parent: 15 pos: 32.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 589 +- uid: 582 type: Wire components: - parent: 15 pos: 31.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 590 +- uid: 583 type: Wire components: - parent: 15 pos: 30.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 591 +- uid: 584 type: Wire components: - parent: 15 pos: 29.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 592 +- uid: 585 type: Wire components: - parent: 15 pos: 29.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 593 +- uid: 586 type: Wire components: - parent: 15 pos: 28.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 594 +- uid: 587 type: Wire components: - parent: 15 pos: 27.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 595 +- uid: 588 type: Wire components: - parent: 15 pos: -3.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 596 +- uid: 589 type: Wire components: - parent: 15 pos: -3.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 597 +- uid: 590 type: Wire components: - parent: 15 pos: -3.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 598 +- uid: 591 type: Wire components: - parent: 15 pos: -3.5,-15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 599 +- uid: 592 type: Wire components: - parent: 15 pos: -3.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 600 +- uid: 593 type: Wire components: - parent: 15 pos: -3.5,-20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 601 +- uid: 594 type: Wire components: - parent: 15 pos: -3.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 602 +- uid: 595 type: Wire components: - parent: 15 pos: -3.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 603 +- uid: 596 type: Wire components: - parent: 15 pos: -3.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 604 +- uid: 597 type: Wire components: - parent: 15 pos: 14.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 605 +- uid: 598 type: Wire components: - parent: 15 pos: 14.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 606 +- uid: 599 type: Wire components: - parent: 15 pos: 14.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 607 +- uid: 600 type: Wire components: - parent: 15 pos: 14.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 608 +- uid: 601 type: Wire components: - parent: 15 pos: 14.5,-15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 609 +- uid: 602 type: Wire components: - parent: 15 pos: 14.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 610 +- uid: 603 type: Wire components: - parent: 15 pos: 14.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 611 +- uid: 604 type: Wire components: - parent: 15 pos: 14.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 612 +- uid: 605 type: Wire components: - parent: 15 pos: 14.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 613 +- uid: 606 type: Wire components: - parent: 15 pos: 14.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 614 +- uid: 607 type: Wire components: - parent: 15 pos: 13.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 615 +- uid: 608 type: Wire components: - parent: 15 pos: 12.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 616 +- uid: 609 type: Wire components: - parent: 15 pos: 11.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 617 +- uid: 610 type: Wire components: - parent: 15 pos: 10.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 618 +- uid: 611 type: Wire components: - parent: 15 pos: 9.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 619 +- uid: 612 type: Wire components: - parent: 15 pos: 8.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 620 +- uid: 613 type: Wire components: - parent: 15 pos: 8.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 621 +- uid: 614 type: Wire components: - parent: 15 pos: 8.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 622 +- uid: 615 type: Wire components: - parent: 15 pos: 8.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 623 +- uid: 616 type: Wire components: - parent: 15 pos: 8.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 624 +- uid: 617 type: Wire components: - parent: 15 pos: 9.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 625 +- uid: 618 type: Wire components: - parent: 15 pos: 10.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 626 +- uid: 619 type: Wire components: - parent: 15 pos: 10.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 627 +- uid: 620 type: Wire components: - parent: 15 pos: 10.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 628 +- uid: 621 type: Wire components: - parent: 15 pos: 10.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 629 +- uid: 622 type: Wire components: - parent: 15 pos: 10.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 630 +- uid: 623 type: Wire components: - parent: 15 pos: 10.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 631 +- uid: 624 type: Wire components: - parent: 15 pos: 10.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 632 +- uid: 625 type: Wire components: - parent: 15 pos: 10.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 633 +- uid: 626 type: Wire components: - parent: 15 pos: 10.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 634 +- uid: 627 type: Wire components: - parent: 15 pos: 10.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 635 +- uid: 628 type: Wire components: - parent: 15 pos: 10.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 636 +- uid: 629 type: Wire components: - parent: 15 pos: 9.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 637 +- uid: 630 type: Wire components: - parent: 15 pos: 8.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 638 +- uid: 631 type: Wire components: - parent: 15 pos: 7.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 639 +- uid: 632 type: Wire components: - parent: 15 pos: 6.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 640 +- uid: 633 type: Wire components: - parent: 15 pos: 5.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 641 +- uid: 634 type: Wire components: - parent: 15 pos: 4.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 642 +- uid: 635 type: Wire components: - parent: 15 pos: 17.5,0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 643 +- uid: 636 type: Wire components: - parent: 15 pos: 17.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 644 +- uid: 637 type: Wire components: - parent: 15 pos: 17.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 645 +- uid: 638 type: Wire components: - parent: 15 pos: 17.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 646 +- uid: 639 type: Wire components: - parent: 15 pos: 17.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 647 +- uid: 640 type: Wire components: - parent: 15 pos: 17.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 648 +- uid: 641 type: Wire components: - parent: 15 pos: 17.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 649 +- uid: 642 type: Wire components: - parent: 15 pos: 17.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 650 +- uid: 643 type: Wire components: - parent: 15 pos: 18.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 651 +- uid: 644 type: Wire components: - parent: 15 pos: 19.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 652 +- uid: 645 type: solid_wall components: - parent: 15 pos: 25.5,-6.5 rot: 1.5707963267948966 rad type: Transform -- uid: 653 +- uid: 646 type: Wire components: - parent: 15 pos: 20.5,-4.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 654 +- uid: 647 type: Wire components: - parent: 15 pos: 19.5,-5.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 655 +- uid: 648 type: Wire components: - parent: 15 pos: 19.5,-4.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 656 +- uid: 649 type: Wire components: - parent: 15 pos: 17.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 657 +- uid: 650 type: Wire components: - parent: 15 pos: 17.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 658 +- uid: 651 type: Wire components: - parent: 15 pos: 17.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 659 +- uid: 652 type: Wire components: - parent: 15 pos: 17.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 660 +- uid: 653 type: Wire components: - parent: 15 pos: 18.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 661 +- uid: 654 type: Wire components: - parent: 15 pos: 19.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 662 +- uid: 655 type: Wire components: - parent: 15 pos: 20.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 663 +- uid: 656 type: Wire components: - parent: 15 pos: 21.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 664 +- uid: 657 type: Wire components: - parent: 15 pos: 21.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 665 +- uid: 658 type: Wire components: - parent: 15 pos: 22.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 666 +- uid: 659 type: Wire components: - parent: 15 pos: 23.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 667 +- uid: 660 type: Wire components: - parent: 15 pos: 24.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 668 +- uid: 661 type: Wire components: - parent: 15 pos: 25.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 669 +- uid: 662 type: Wire components: - parent: 15 pos: 16.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 670 +- uid: 663 type: Wire components: - parent: 15 pos: 15.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 671 +- uid: 664 type: Wire components: - parent: 15 pos: 18.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 672 +- uid: 665 type: Wire components: - parent: 15 pos: 18.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 673 +- uid: 666 type: Wire components: - parent: 15 pos: 18.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 674 +- uid: 667 type: Wire components: - parent: 15 pos: 19.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 675 +- uid: 668 type: Wire components: - parent: 15 pos: 20.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 676 +- uid: 669 type: Wire components: - parent: 15 pos: 21.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 677 +- uid: 670 type: Wire components: - parent: 15 pos: 22.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 678 +- uid: 671 type: Wire components: - parent: 15 pos: 23.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 680 +- uid: 672 type: Table components: - parent: 15 pos: 6.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 682 +- uid: 673 type: Wire components: - parent: 15 pos: -4.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 683 +- uid: 674 type: Wire components: - parent: 15 pos: 0.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 684 +- uid: 675 type: Wire components: - parent: 15 pos: 0.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 685 +- uid: 676 type: Wire components: - parent: 15 pos: 0.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 686 +- uid: 677 type: Wire components: - parent: 15 pos: 0.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 687 +- uid: 678 type: Wire components: - parent: 15 pos: -0.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 688 +- uid: 679 type: Wire components: - parent: 15 pos: -1.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 689 +- uid: 680 type: Wire components: - parent: 15 pos: -2.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 690 +- uid: 681 type: Wire components: - parent: 15 pos: -3.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 691 +- uid: 682 type: Wire components: - parent: 15 pos: -4.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 692 +- uid: 683 type: Wire components: - parent: 15 pos: -5.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 693 +- uid: 684 type: Wire components: - parent: 15 pos: -6.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 694 +- uid: 685 type: Wire components: - parent: 15 pos: -7.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 695 +- uid: 686 type: Wire components: - parent: 15 pos: -8.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 696 +- uid: 687 type: Wire components: - parent: 15 pos: -9.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 697 +- uid: 688 type: Wire components: - parent: 15 pos: -9.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 698 +- uid: 689 type: Wire components: - parent: 15 pos: -9.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 699 +- uid: 690 type: Wire components: - parent: 15 pos: -8.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 700 +- uid: 691 type: Wire components: - parent: 15 pos: -7.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 701 +- uid: 692 type: Wire components: - parent: 15 pos: -6.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 702 +- uid: 693 type: Wire components: - parent: 15 pos: -6.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 703 +- uid: 694 type: Wire components: - parent: 15 pos: -6.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 704 +- uid: 695 type: Wire components: - parent: 15 pos: -6.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 705 +- uid: 696 type: Wire components: - parent: 15 pos: -7.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 706 +- uid: 697 type: Wire components: - parent: 15 pos: -8.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 707 +- uid: 698 type: Wire components: - parent: 15 pos: -8.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 708 +- uid: 699 type: Wire components: - parent: 15 pos: -8.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 709 +- uid: 700 type: Wire components: - parent: 15 pos: -8.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 710 +- uid: 701 type: Wire components: - parent: 15 pos: -8.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 711 +- uid: 702 type: Wire components: - parent: 15 pos: -11.5,0.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 712 +- uid: 703 type: Chair components: - parent: 15 pos: -3.5,-23.5 rot: 3.141592653589793 rad type: Transform -- uid: 713 + - anchored: False + type: Collidable +- uid: 704 type: Chair components: - parent: 15 pos: 38.5,-0.5 type: Transform -- uid: 714 + - anchored: False + type: Collidable +- uid: 705 type: Table components: - parent: 15 pos: 39.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 715 +- uid: 706 type: VendingMachineYouTool components: - parent: 15 pos: 31.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 716 +- uid: 707 type: Wire components: - parent: 15 pos: 2.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 717 +- uid: 708 type: Wire components: - parent: 15 pos: 1.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 718 +- uid: 709 type: Wire components: - parent: 15 pos: 0.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 719 +- uid: 710 type: Wire components: - parent: 15 pos: -0.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 720 +- uid: 711 type: solid_wall components: - parent: 15 pos: -25.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 721 +- uid: 712 type: Table components: - parent: 15 pos: 29.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 722 +- uid: 713 type: ComputerAlert components: - parent: 15 pos: 29.5,-2.5 type: Transform -- uid: 723 +- uid: 714 type: Wire components: - parent: 15 pos: -32.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 724 +- uid: 715 type: Wire components: - parent: 15 pos: -31.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 725 +- uid: 716 type: Wire components: - parent: 15 pos: -30.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 726 +- uid: 717 type: Wire components: - parent: 15 pos: -29.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 727 +- uid: 718 type: Wire components: - parent: 15 pos: -28.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 728 +- uid: 719 type: Wire components: - parent: 15 pos: -27.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 729 +- uid: 720 type: Wire components: - parent: 15 pos: -26.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 730 +- uid: 721 type: Wire components: - parent: 15 pos: -25.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 731 +- uid: 722 type: Wire components: - parent: 15 pos: -24.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 732 +- uid: 723 type: Wire components: - parent: 15 pos: -23.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 733 +- uid: 724 type: Wire components: - parent: 15 pos: -22.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 734 +- uid: 725 type: Wire components: - parent: 15 pos: -21.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 735 +- uid: 726 type: Wire components: - parent: 15 pos: -20.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 736 +- uid: 727 type: Wire components: - parent: 15 pos: -24.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 737 +- uid: 728 type: Wire components: - parent: 15 pos: -25.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 738 +- uid: 729 type: Wire components: - parent: 15 pos: -26.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 739 +- uid: 730 type: Wire components: - parent: 15 pos: -27.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 740 +- uid: 731 type: Wire components: - parent: 15 pos: -28.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 741 +- uid: 732 type: Catwalk components: - parent: 15 pos: -16.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 742 +- uid: 733 type: Catwalk components: - parent: 15 pos: -13.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 743 +- uid: 734 type: Table components: - parent: 15 pos: 31.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 744 +- uid: 735 type: Catwalk components: - parent: 15 pos: -8.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 745 +- uid: 736 type: Catwalk components: - parent: 15 pos: -9.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 746 +- uid: 737 type: Catwalk components: - parent: 15 pos: -9.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 747 +- uid: 738 type: solid_wall components: - parent: 15 pos: -23.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 748 +- uid: 739 type: ChairOfficeDark components: - parent: 15 pos: 30.5,-2.5 rot: 3.141592653589793 rad type: Transform -- uid: 749 + - anchored: False + type: Collidable +- uid: 740 type: Catwalk components: - parent: 15 pos: 0.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 750 +- uid: 741 type: CrateGeneric components: - parent: 15 pos: 39.5,13.5 rot: -1.5707963267948966 rad type: Transform + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 751 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 742 type: CrateGeneric components: - parent: 15 pos: 38.5,13.5 rot: -1.5707963267948966 rad type: Transform + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 752 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 743 type: Table components: - parent: 15 pos: 6.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 753 +- uid: 744 type: Catwalk components: - parent: 15 pos: -32.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 754 +- uid: 745 type: Catwalk components: - parent: 15 pos: -33.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 755 +- uid: 746 type: Catwalk components: - parent: 15 pos: -32.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 756 +- uid: 747 type: Catwalk components: - parent: 15 pos: -32.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 762 +- uid: 748 type: Catwalk components: - parent: 15 pos: -15.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 763 +- uid: 749 type: Catwalk components: - parent: 15 pos: -16.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 764 +- uid: 750 type: Catwalk components: - parent: 15 pos: -20.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 765 +- uid: 751 type: Catwalk components: - parent: 15 pos: -16.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 766 +- uid: 752 type: Catwalk components: - parent: 15 pos: -4.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 767 +- uid: 753 type: Catwalk components: - parent: 15 pos: -4.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 768 +- uid: 754 type: Catwalk components: - parent: 15 pos: -4.5,21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 769 +- uid: 755 type: Catwalk components: - parent: 15 pos: -0.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 770 +- uid: 756 type: Catwalk components: - parent: 15 pos: 6.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 771 +- uid: 757 type: Catwalk components: - parent: 15 pos: 8.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 772 +- uid: 758 type: Catwalk components: - parent: 15 pos: 12.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 773 +- uid: 759 type: AirlockMaintEngiLocked components: - parent: 15 pos: 33.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 774 +- uid: 760 type: Catwalk components: - parent: 15 pos: 27.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 775 +- uid: 761 type: Catwalk components: - parent: 15 pos: 21.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 776 +- uid: 762 type: ReinforcedWindow components: - parent: 15 pos: 51.5,3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 777 +- uid: 763 type: Generator components: - parent: 15 pos: 40.5,6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - type: NodeContainer -- uid: 778 +- uid: 764 type: APC components: - parent: 15 pos: 37.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 779 +- uid: 765 type: reinforced_wall components: - parent: 15 pos: 39.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 780 +- uid: 766 type: reinforced_wall components: - parent: 15 pos: 38.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 781 +- uid: 767 type: reinforced_wall components: - parent: 15 pos: 37.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 782 +- uid: 768 type: reinforced_wall components: - parent: 15 pos: 37.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 783 +- uid: 769 type: reinforced_wall components: - parent: 15 pos: 37.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 784 +- uid: 770 type: reinforced_wall components: - parent: 15 pos: 37.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 785 +- uid: 771 type: reinforced_wall components: - parent: 15 pos: 37.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 786 +- uid: 772 type: reinforced_wall components: - parent: 15 pos: 38.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 787 +- uid: 773 type: reinforced_wall components: - parent: 15 pos: 39.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 788 +- uid: 774 type: reinforced_wall components: - parent: 15 pos: 40.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 789 +- uid: 775 type: reinforced_wall components: - parent: 15 pos: 41.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 790 +- uid: 776 type: reinforced_wall components: - parent: 15 pos: 42.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 791 +- uid: 777 type: reinforced_wall components: - parent: 15 pos: 43.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 792 +- uid: 778 type: reinforced_wall components: - parent: 15 pos: 44.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 793 +- uid: 779 type: reinforced_wall components: - parent: 15 pos: 44.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 794 +- uid: 780 type: reinforced_wall components: - parent: 15 pos: 44.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 795 +- uid: 781 type: reinforced_wall components: - parent: 15 pos: 44.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 796 +- uid: 782 type: reinforced_wall components: - parent: 15 pos: 44.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 797 +- uid: 783 type: reinforced_wall components: - parent: 15 pos: 43.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 798 +- uid: 784 type: reinforced_wall components: - parent: 15 pos: 42.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 799 +- uid: 785 type: LowWall components: - parent: 15 pos: 40.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 800 +- uid: 786 type: LowWall components: - parent: 15 pos: 39.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 801 +- uid: 787 type: LowWall components: - parent: 15 pos: 36.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 803 +- uid: 788 type: Poweredlight components: - parent: 15 @@ -9670,7 +5800,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 804 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 789 type: PoweredSmallLight components: - parent: 15 @@ -9681,7 +5815,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 806 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 790 type: PoweredSmallLight components: - parent: 15 @@ -9692,1772 +5830,1756 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 807 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 791 type: APC components: - parent: 15 pos: -20.5,-8.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 808 +- uid: 792 type: solid_wall components: - parent: 15 pos: 37.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 809 +- uid: 793 type: solid_wall components: - parent: 15 pos: 37.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 810 +- uid: 794 type: solid_wall components: - parent: 15 pos: 37.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 811 +- uid: 795 type: solid_wall components: - parent: 15 pos: 36.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 812 +- uid: 796 type: solid_wall components: - parent: 15 pos: 35.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 813 +- uid: 797 type: WaterTankFull components: - parent: 15 pos: -1.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 814 + - anchored: False + type: Collidable +- uid: 798 type: solid_wall components: - parent: 15 pos: 36.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 815 +- uid: 799 type: LowWall components: - parent: 15 pos: 51.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 816 +- uid: 800 type: LowWall components: - parent: 15 pos: 51.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 817 +- uid: 801 type: solid_wall components: - parent: 15 pos: 41.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 818 +- uid: 802 type: solid_wall components: - parent: 15 pos: 41.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 819 +- uid: 803 type: solid_wall components: - parent: 15 pos: 41.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 820 +- uid: 804 type: solid_wall components: - parent: 15 pos: 41.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 821 +- uid: 805 type: solid_wall components: - parent: 15 pos: 41.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 822 +- uid: 806 type: solid_wall components: - parent: 15 pos: 40.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 823 +- uid: 807 type: solid_wall components: - parent: 15 pos: 39.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 824 +- uid: 808 type: solid_wall components: - parent: 15 pos: 38.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 825 +- uid: 809 type: solid_wall components: - parent: 15 pos: 37.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 826 +- uid: 810 type: solid_wall components: - parent: 15 pos: 36.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 827 +- uid: 811 type: solid_wall components: - parent: 15 pos: 36.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 828 +- uid: 812 type: solid_wall components: - parent: 15 pos: 36.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 829 +- uid: 813 type: solid_wall components: - parent: 15 pos: 36.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 830 +- uid: 814 type: LowWall components: - parent: 15 pos: 37.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 831 +- uid: 815 type: solid_wall components: - parent: 15 pos: 36.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 832 +- uid: 816 type: LowWall components: - parent: 15 pos: 51.5,3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 833 +- uid: 817 type: solid_wall components: - parent: 15 pos: 35.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 834 +- uid: 818 type: solid_wall components: - parent: 15 pos: 31.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 835 +- uid: 819 type: solid_wall components: - parent: 15 pos: 42.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 836 +- uid: 820 type: solid_wall components: - parent: 15 pos: 45.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 837 +- uid: 821 type: solid_wall components: - parent: 15 pos: 44.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 838 +- uid: 822 type: WaterTankFull components: - parent: 15 pos: 10.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 839 + - anchored: False + type: Collidable +- uid: 823 type: solid_wall components: - parent: 15 pos: 44.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 840 +- uid: 824 type: solid_wall components: - parent: 15 pos: 44.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 841 +- uid: 825 type: solid_wall components: - parent: 15 pos: 44.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 842 +- uid: 826 type: solid_wall components: - parent: 15 pos: 44.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 843 +- uid: 827 type: solid_wall components: - parent: 15 pos: 44.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 844 +- uid: 828 type: solid_wall components: - parent: 15 pos: 44.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 845 +- uid: 829 type: solid_wall components: - parent: 15 pos: 43.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 846 +- uid: 830 type: solid_wall components: - parent: 15 pos: 42.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 847 +- uid: 831 type: solid_wall components: - parent: 15 pos: 41.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 848 +- uid: 832 type: solid_wall components: - parent: 15 pos: 40.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 849 +- uid: 833 type: solid_wall components: - parent: 15 pos: 39.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 850 +- uid: 834 type: solid_wall components: - parent: 15 pos: 39.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 851 +- uid: 835 type: solid_wall components: - parent: 15 pos: 39.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 852 +- uid: 836 type: solid_wall components: - parent: 15 pos: 39.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 853 +- uid: 837 type: solid_wall components: - parent: 15 pos: 38.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 854 +- uid: 838 type: solid_wall components: - parent: 15 pos: 37.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 855 +- uid: 839 type: solid_wall components: - parent: 15 pos: 36.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 856 +- uid: 840 type: solid_wall components: - parent: 15 pos: 35.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 857 +- uid: 841 type: solid_wall components: - parent: 15 pos: 34.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 858 +- uid: 842 type: solid_wall components: - parent: 15 pos: 33.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 859 +- uid: 843 type: solid_wall components: - parent: 15 pos: 32.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 860 +- uid: 844 type: solid_wall components: - parent: 15 pos: 31.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 861 +- uid: 845 type: solid_wall components: - parent: 15 pos: 30.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 862 +- uid: 846 type: solid_wall components: - parent: 15 pos: 29.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 863 +- uid: 847 type: solid_wall components: - parent: 15 pos: 28.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 864 +- uid: 848 type: solid_wall components: - parent: 15 pos: 28.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 865 +- uid: 849 type: solid_wall components: - parent: 15 pos: 28.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 866 +- uid: 850 type: solid_wall components: - parent: 15 pos: 28.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 867 +- uid: 851 type: solid_wall components: - parent: 15 pos: 28.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 868 +- uid: 852 type: solid_wall components: - parent: 15 pos: 28.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 869 +- uid: 853 type: solid_wall components: - parent: 15 pos: 28.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 870 +- uid: 854 type: solid_wall components: - parent: 15 pos: 28.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 871 +- uid: 855 type: solid_wall components: - parent: 15 pos: 28.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 872 +- uid: 856 type: solid_wall components: - parent: 15 pos: 28.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 873 +- uid: 857 type: solid_wall components: - parent: 15 pos: 28.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 874 +- uid: 858 type: solid_wall components: - parent: 15 pos: 28.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 875 +- uid: 859 type: solid_wall components: - parent: 15 pos: 28.5,-19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 876 +- uid: 860 type: solid_wall components: - parent: 15 pos: 27.5,-19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 877 +- uid: 861 type: solid_wall components: - parent: 15 pos: 26.5,-19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 878 +- uid: 862 type: solid_wall components: - parent: 15 pos: 25.5,-19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 879 +- uid: 863 type: solid_wall components: - parent: 15 pos: 24.5,-19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 880 +- uid: 864 type: solid_wall components: - parent: 15 pos: 23.5,-19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 881 +- uid: 865 type: solid_wall components: - parent: 15 pos: 23.5,-20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 882 +- uid: 866 type: solid_wall components: - parent: 15 pos: 23.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 883 +- uid: 867 type: solid_wall components: - parent: 15 pos: 45.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 884 +- uid: 868 type: Wire components: - parent: 15 pos: 14.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 885 +- uid: 869 type: solid_wall components: - parent: 15 pos: 0.5,-28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 886 +- uid: 870 type: solid_wall components: - parent: 15 pos: 0.5,-27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 887 +- uid: 871 type: solid_wall components: - parent: 15 pos: 0.5,-26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 888 +- uid: 872 type: ReinforcedWindow components: - parent: 15 pos: 51.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 889 +- uid: 873 type: LowWall components: - parent: 15 pos: 51.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 890 +- uid: 874 type: solid_wall components: - parent: 15 pos: 18.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 891 +- uid: 875 type: solid_wall components: - parent: 15 pos: 19.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 892 +- uid: 876 type: solid_wall components: - parent: 15 pos: 13.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 893 +- uid: 877 type: solid_wall components: - parent: 15 pos: 12.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 894 +- uid: 878 type: solid_wall components: - parent: 15 pos: 1.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 895 +- uid: 879 type: solid_wall components: - parent: 15 pos: 0.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 896 +- uid: 880 type: solid_wall components: - parent: 15 pos: 0.5,-25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 897 +- uid: 881 type: solid_wall components: - parent: 15 pos: 8.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 898 +- uid: 882 type: solid_wall components: - parent: 15 pos: 7.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 899 +- uid: 883 type: solid_wall components: - parent: 15 pos: 6.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 900 +- uid: 884 type: solid_wall components: - parent: 15 pos: 6.5,-22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 901 +- uid: 885 type: solid_wall components: - parent: 15 pos: 5.5,-22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 902 +- uid: 886 type: LowWall components: - parent: 15 pos: 5.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 903 +- uid: 887 type: LowWall components: - parent: 15 pos: 5.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 904 +- uid: 888 type: LowWall components: - parent: 15 pos: 4.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 905 +- uid: 889 type: LowWall components: - parent: 15 pos: 3.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 906 +- uid: 890 type: LowWall components: - parent: 15 pos: 2.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 907 +- uid: 891 type: LowWall components: - parent: 15 pos: 9.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 908 +- uid: 892 type: LowWall components: - parent: 15 pos: 10.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 909 +- uid: 893 type: LowWall components: - parent: 15 pos: 11.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 910 +- uid: 894 type: solid_wall components: - parent: 15 pos: 45.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 911 +- uid: 895 type: LowWall components: - parent: 15 pos: 34.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 912 +- uid: 896 type: LowWall components: - parent: 15 pos: 32.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 913 +- uid: 897 type: solid_wall components: - parent: 15 pos: 31.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 914 +- uid: 898 type: solid_wall components: - parent: 15 pos: 30.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 915 +- uid: 899 type: solid_wall components: - parent: 15 pos: 29.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 916 +- uid: 900 type: solid_wall components: - parent: 15 pos: 29.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 917 +- uid: 901 type: solid_wall components: - parent: 15 pos: 29.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 918 +- uid: 902 type: solid_wall components: - parent: 15 pos: 28.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 919 +- uid: 903 type: solid_wall components: - parent: 15 pos: 30.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 920 +- uid: 904 type: solid_wall components: - parent: 15 pos: 30.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 921 +- uid: 905 type: solid_wall components: - parent: 15 pos: 30.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 922 +- uid: 906 type: LowWall components: - parent: 15 pos: 32.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 923 +- uid: 907 type: LowWall components: - parent: 15 pos: 34.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 924 +- uid: 908 type: LowWall components: - parent: 15 pos: 30.5,4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 925 +- uid: 909 type: LowWall components: - parent: 15 pos: 30.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 926 +- uid: 910 type: LowWall components: - parent: 15 pos: 30.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 927 +- uid: 911 type: LowWall components: - parent: 15 pos: 31.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 928 +- uid: 912 type: LowWall components: - parent: 15 pos: 32.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 929 +- uid: 913 type: LowWall components: - parent: 15 pos: 33.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 930 +- uid: 914 type: LowWall components: - parent: 15 pos: 34.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 931 +- uid: 915 type: LowWall components: - parent: 15 pos: 35.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 932 +- uid: 916 type: LowWall components: - parent: 15 pos: 36.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 933 +- uid: 917 type: LowWall components: - parent: 15 pos: 36.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 934 +- uid: 918 type: solid_wall components: - parent: 15 pos: 29.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 935 +- uid: 919 type: solid_wall components: - parent: 15 pos: 29.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 936 +- uid: 920 type: solid_wall components: - parent: 15 pos: 29.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 937 +- uid: 921 type: solid_wall components: - parent: 15 pos: 29.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 938 +- uid: 922 type: LowWall components: - parent: 15 pos: 19.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 939 +- uid: 923 type: LowWall components: - parent: 15 pos: 24.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 940 +- uid: 924 type: LowWall components: - parent: 15 pos: 23.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 941 +- uid: 925 type: solid_wall components: - parent: 15 pos: 25.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 942 +- uid: 926 type: LowWall components: - parent: 15 pos: 19.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 943 +- uid: 927 type: LowWall components: - parent: 15 pos: 18.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 944 +- uid: 928 type: solid_wall components: - parent: 15 pos: 25.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 945 +- uid: 929 type: solid_wall components: - parent: 15 pos: 25.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 946 +- uid: 930 type: solid_wall components: - parent: 15 pos: 25.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 947 +- uid: 931 type: solid_wall components: - parent: 15 pos: 25.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 948 +- uid: 932 type: solid_wall components: - parent: 15 pos: 25.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 949 +- uid: 933 type: solid_wall components: - parent: 15 pos: 25.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 950 +- uid: 934 type: solid_wall components: - parent: 15 pos: 26.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 951 +- uid: 935 type: solid_wall components: - parent: 15 pos: 24.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 952 +- uid: 936 type: solid_wall components: - parent: 15 pos: 24.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 953 +- uid: 937 type: solid_wall components: - parent: 15 pos: 23.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 954 +- uid: 938 type: solid_wall components: - parent: 15 pos: 18.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 955 +- uid: 939 type: solid_wall components: - parent: 15 pos: 17.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 956 +- uid: 940 type: solid_wall components: - parent: 15 pos: 17.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 957 +- uid: 941 type: solid_wall components: - parent: 15 pos: 17.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 958 +- uid: 942 type: solid_wall components: - parent: 15 pos: 17.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 959 +- uid: 943 type: solid_wall components: - parent: 15 pos: 16.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 960 +- uid: 944 type: solid_wall components: - parent: 15 pos: 12.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 961 +- uid: 945 type: LowWall components: - parent: 15 pos: 19.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 962 +- uid: 946 type: LowWall components: - parent: 15 pos: 20.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 963 +- uid: 947 type: LowWall components: - parent: 15 pos: 21.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 964 +- uid: 948 type: LowWall components: - parent: 15 pos: 22.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 965 +- uid: 949 type: LowWall components: - parent: 15 pos: 23.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 966 +- uid: 950 type: LowWall components: - parent: 15 pos: 23.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 967 +- uid: 951 type: LowWall components: - parent: 15 pos: 21.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 968 +- uid: 952 type: LowWall components: - parent: 15 pos: 21.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 969 +- uid: 953 type: LowWall components: - parent: 15 pos: 21.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 970 +- uid: 954 type: LowWall components: - parent: 15 pos: 19.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 971 +- uid: 955 type: LowWall components: - parent: 15 pos: 26.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 972 +- uid: 956 type: LowWall components: - parent: 15 pos: 27.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 973 +- uid: 957 type: LowWall components: - parent: 15 pos: 28.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 974 +- uid: 958 type: solid_wall components: - parent: 15 pos: 17.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 975 +- uid: 959 type: solid_wall components: - parent: 15 pos: 17.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 976 +- uid: 960 type: solid_wall components: - parent: 15 pos: 17.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 977 +- uid: 961 type: solid_wall components: - parent: 15 pos: 17.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 978 +- uid: 962 type: solid_wall components: - parent: 15 pos: 16.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 979 +- uid: 963 type: solid_wall components: - parent: 15 pos: 17.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 980 +- uid: 964 type: solid_wall components: - parent: 15 pos: 16.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 981 +- uid: 965 type: solid_wall components: - parent: 15 pos: 15.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 982 +- uid: 966 type: solid_wall components: - parent: 15 pos: 14.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 983 +- uid: 967 type: solid_wall components: - parent: 15 pos: 13.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 984 +- uid: 968 type: solid_wall components: - parent: 15 pos: 12.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 985 +- uid: 969 type: solid_wall components: - parent: 15 pos: 11.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 986 +- uid: 970 type: reinforced_wall components: - parent: 15 pos: 11.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 987 +- uid: 971 type: reinforced_wall components: - parent: 15 pos: 10.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 988 +- uid: 972 type: reinforced_wall components: - parent: 15 pos: 9.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 989 +- uid: 973 type: reinforced_wall components: - parent: 15 pos: 7.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 990 +- uid: 974 type: reinforced_wall components: - parent: 15 pos: 6.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 991 +- uid: 975 type: reinforced_wall components: - parent: 15 pos: 5.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 992 +- uid: 976 type: reinforced_wall components: - parent: 15 pos: 5.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 993 +- uid: 977 type: reinforced_wall components: - parent: 15 pos: 5.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 994 +- uid: 978 type: reinforced_wall components: - parent: 15 pos: 5.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 995 +- uid: 979 type: reinforced_wall components: - parent: 15 pos: 5.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 996 +- uid: 980 type: reinforced_wall components: - parent: 15 pos: 5.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 997 +- uid: 981 type: reinforced_wall components: - parent: 15 pos: 5.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 998 +- uid: 982 type: reinforced_wall components: - parent: 15 pos: 11.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 999 +- uid: 983 type: reinforced_wall components: - parent: 15 pos: 11.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1000 +- uid: 984 type: reinforced_wall components: - parent: 15 pos: 11.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1001 +- uid: 985 type: reinforced_wall components: - parent: 15 pos: 11.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1002 +- uid: 986 type: reinforced_wall components: - parent: 15 pos: 11.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1003 +- uid: 987 type: reinforced_wall components: - parent: 15 pos: 11.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1004 +- uid: 988 type: reinforced_wall components: - parent: 15 pos: 10.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1005 +- uid: 989 type: reinforced_wall components: - parent: 15 pos: 6.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1006 +- uid: 990 type: LowWall components: - parent: 15 pos: 8.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1007 +- uid: 991 type: solid_wall components: - parent: 15 pos: 14.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1008 +- uid: 992 type: solid_wall components: - parent: 15 pos: 14.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1009 +- uid: 993 type: solid_wall components: - parent: 15 pos: 14.5,17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1010 +- uid: 994 type: ReinforcedWindow components: - parent: 15 pos: 19.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1011 +- uid: 995 type: ReinforcedWindow components: - parent: 15 pos: 19.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1012 +- uid: 996 type: ReinforcedWindow components: - parent: 15 pos: 19.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1013 +- uid: 997 type: solid_wall components: - parent: 15 pos: 14.5,21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1014 +- uid: 998 type: solid_wall components: - parent: 15 pos: 14.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1015 +- uid: 999 type: solid_wall components: - parent: 15 pos: 13.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1016 +- uid: 1000 type: solid_wall components: - parent: 15 pos: 12.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1017 +- uid: 1001 type: solid_wall components: - parent: 15 pos: 11.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1018 +- uid: 1002 type: solid_wall components: - parent: 15 pos: 11.5,21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1019 +- uid: 1003 type: solid_wall components: - parent: 15 pos: 11.5,19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1020 +- uid: 1004 type: solid_wall components: - parent: 15 pos: 11.5,18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1021 +- uid: 1005 type: solid_wall components: - parent: 15 pos: 11.5,17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1022 +- uid: 1006 type: solid_wall components: - parent: 15 pos: 11.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1023 +- uid: 1007 type: solid_wall components: - parent: 15 pos: 11.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1024 +- uid: 1008 type: solid_wall components: - parent: 15 pos: 10.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1025 +- uid: 1009 type: solid_wall components: - parent: 15 pos: 9.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1026 +- uid: 1010 type: Wire components: - parent: 15 pos: 8.5,16.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1027 +- uid: 1011 type: Wire components: - parent: 15 pos: 8.5,17.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1028 +- uid: 1012 type: solid_wall components: - parent: 15 pos: 6.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1029 +- uid: 1013 type: solid_wall components: - parent: 15 pos: 5.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1030 +- uid: 1014 type: solid_wall components: - parent: 15 pos: 6.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1031 +- uid: 1015 type: solid_wall components: - parent: 15 pos: 5.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1032 +- uid: 1016 type: solid_wall components: - parent: 15 pos: 6.5,21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1033 +- uid: 1017 type: reinforced_wall components: - parent: 15 pos: 10.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1034 +- uid: 1018 type: reinforced_wall components: - parent: 15 pos: 9.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1035 +- uid: 1019 type: reinforced_wall components: - parent: 15 pos: 8.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1036 +- uid: 1020 type: reinforced_wall components: - parent: 15 pos: 7.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1037 +- uid: 1021 type: reinforced_wall components: - parent: 15 pos: 6.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1038 +- uid: 1022 type: reinforced_wall components: - parent: 15 pos: 5.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1039 +- uid: 1023 type: reinforced_wall components: - parent: 15 pos: 10.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1040 +- uid: 1024 type: reinforced_wall components: - parent: 15 pos: 10.5,24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1041 +- uid: 1025 type: reinforced_wall components: - parent: 15 pos: 10.5,25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1042 +- uid: 1026 type: reinforced_wall components: - parent: 15 pos: 10.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1043 +- uid: 1027 type: reinforced_wall components: - parent: 15 pos: 10.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1044 +- uid: 1028 type: reinforced_wall components: - parent: 15 pos: 10.5,28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1045 +- uid: 1029 type: reinforced_wall components: - parent: 15 pos: 10.5,30.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1046 +- uid: 1030 type: reinforced_wall components: - parent: 15 pos: 10.5,31.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1047 +- uid: 1031 type: reinforced_wall components: - parent: 15 pos: -3.5,31.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1048 +- uid: 1032 type: reinforced_wall components: - parent: 15 pos: -3.5,30.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1049 +- uid: 1033 type: reinforced_wall components: - parent: 15 pos: -3.5,28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1050 +- uid: 1034 type: reinforced_wall components: - parent: 15 pos: -3.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1051 +- uid: 1035 type: reinforced_wall components: - parent: 15 pos: -3.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1052 +- uid: 1036 type: reinforced_wall components: - parent: 15 pos: -3.5,25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1053 +- uid: 1037 type: reinforced_wall components: - parent: 15 pos: 1.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1054 +- uid: 1038 type: reinforced_wall components: - parent: 15 pos: 0.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1055 +- uid: 1039 type: reinforced_wall components: - parent: 15 pos: -0.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1056 +- uid: 1040 type: AirlockCommandLocked components: - name: Head of Personnel's Office @@ -11469,2986 +7591,2968 @@ entities: - access: - - HeadOfPersonnel type: AccessReader -- uid: 1057 +- uid: 1041 type: reinforced_wall components: - parent: 15 pos: -2.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1058 +- uid: 1042 type: reinforced_wall components: - parent: 15 pos: -3.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1059 +- uid: 1043 type: reinforced_wall components: - parent: 15 pos: -3.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1060 +- uid: 1044 type: reinforced_wall components: - parent: 15 pos: -3.5,24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1061 +- uid: 1045 type: solid_wall components: - parent: 15 pos: 1.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1062 +- uid: 1046 type: solid_wall components: - parent: 15 pos: 1.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1063 +- uid: 1047 type: solid_wall components: - parent: 15 pos: 0.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1064 +- uid: 1048 type: solid_wall components: - parent: 15 pos: -2.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1065 +- uid: 1049 type: solid_wall components: - parent: 15 pos: 1.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1066 +- uid: 1050 type: solid_wall components: - parent: 15 pos: 5.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1067 +- uid: 1051 type: solid_wall components: - parent: 15 pos: 5.5,24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1068 +- uid: 1052 type: solid_wall components: - parent: 15 pos: 5.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1069 +- uid: 1053 type: solid_wall components: - parent: 15 pos: 5.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1070 +- uid: 1054 type: solid_wall components: - parent: 15 pos: 6.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1071 +- uid: 1055 type: solid_wall components: - parent: 15 pos: 7.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1072 +- uid: 1056 type: solid_wall components: - parent: 15 pos: 8.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1073 +- uid: 1057 type: solid_wall components: - parent: 15 pos: 9.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1074 +- uid: 1058 type: LowWall components: - parent: 15 pos: 3.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1075 +- uid: 1059 type: LowWall components: - parent: 15 pos: -1.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1076 +- uid: 1060 type: LowWall components: - parent: 15 pos: -0.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1077 +- uid: 1061 type: LowWall components: - parent: 15 pos: -3.5,29.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1078 +- uid: 1062 type: LowWall components: - parent: 15 pos: 10.5,29.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1079 +- uid: 1063 type: LowWall components: - parent: 15 pos: 9.5,31.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1080 +- uid: 1064 type: LowWall components: - parent: 15 pos: 9.5,32.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1081 +- uid: 1065 type: LowWall components: - parent: 15 pos: 8.5,32.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1082 +- uid: 1066 type: LowWall components: - parent: 15 pos: 8.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1083 +- uid: 1067 type: LowWall components: - parent: 15 pos: 7.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1084 +- uid: 1068 type: LowWall components: - parent: 15 pos: 6.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1085 +- uid: 1069 type: LowWall components: - parent: 15 pos: 5.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1086 +- uid: 1070 type: LowWall components: - parent: 15 pos: 4.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1087 +- uid: 1071 type: LowWall components: - parent: 15 pos: 3.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1088 +- uid: 1072 type: LowWall components: - parent: 15 pos: 2.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1089 +- uid: 1073 type: LowWall components: - parent: 15 pos: 1.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1090 +- uid: 1074 type: LowWall components: - parent: 15 pos: 0.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1091 +- uid: 1075 type: LowWall components: - parent: 15 pos: -0.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1092 +- uid: 1076 type: LowWall components: - parent: 15 pos: -1.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1093 +- uid: 1077 type: LowWall components: - parent: 15 pos: -1.5,32.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1094 +- uid: 1078 type: LowWall components: - parent: 15 pos: -2.5,31.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1095 +- uid: 1079 type: LowWall components: - parent: 15 pos: -2.5,32.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1096 +- uid: 1080 type: LowWall components: - parent: 15 pos: 6.5,19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1097 +- uid: 1081 type: LowWall components: - parent: 15 pos: 6.5,18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1098 +- uid: 1082 type: reinforced_wall components: - parent: 15 pos: 1.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1099 +- uid: 1083 type: reinforced_wall components: - parent: 15 pos: 0.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1100 +- uid: 1084 type: reinforced_wall components: - parent: 15 pos: -0.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1101 +- uid: 1085 type: reinforced_wall components: - parent: 15 pos: -1.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1102 +- uid: 1086 type: reinforced_wall components: - parent: 15 pos: -2.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1103 +- uid: 1087 type: reinforced_wall components: - parent: 15 pos: -3.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1104 +- uid: 1088 type: reinforced_wall components: - parent: 15 pos: -4.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1105 +- uid: 1089 type: reinforced_wall components: - parent: 15 pos: -4.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1106 +- uid: 1090 type: reinforced_wall components: - parent: 15 pos: -4.5,17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1107 +- uid: 1091 type: reinforced_wall components: - parent: 15 pos: -4.5,18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1108 +- uid: 1092 type: reinforced_wall components: - parent: 15 pos: -4.5,19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1109 +- uid: 1093 type: reinforced_wall components: - parent: 15 pos: -5.5,19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1110 +- uid: 1094 type: LowWall components: - parent: 15 pos: -7.5,18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1111 +- uid: 1095 type: reinforced_wall components: - parent: 15 pos: -3.5,19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1112 +- uid: 1096 type: reinforced_wall components: - parent: 15 pos: -2.5,19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1113 +- uid: 1097 type: reinforced_wall components: - parent: 15 pos: -1.5,19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1114 +- uid: 1098 type: reinforced_wall components: - parent: 15 pos: -0.5,19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1115 +- uid: 1099 type: reinforced_wall components: - parent: 15 pos: 0.5,19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1116 +- uid: 1100 type: reinforced_wall components: - parent: 15 pos: 0.5,18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1117 +- uid: 1101 type: reinforced_wall components: - parent: 15 pos: 0.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1118 +- uid: 1102 type: reinforced_wall components: - parent: 15 pos: -5.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1119 +- uid: 1103 type: reinforced_wall components: - parent: 15 pos: -5.5,21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1120 +- uid: 1104 type: reinforced_wall components: - parent: 15 pos: -5.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1121 +- uid: 1105 type: reinforced_wall components: - parent: 15 pos: -6.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1122 +- uid: 1106 type: reinforced_wall components: - parent: 15 pos: -7.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1123 +- uid: 1107 type: reinforced_wall components: - parent: 15 pos: -8.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1124 +- uid: 1108 type: reinforced_wall components: - parent: 15 pos: -9.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1125 +- uid: 1109 type: Wire components: - parent: 15 pos: -13.5,15.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1126 +- uid: 1110 type: reinforced_wall components: - parent: 15 pos: -11.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1127 +- uid: 1111 type: reinforced_wall components: - parent: 15 pos: -12.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1128 +- uid: 1112 type: reinforced_wall components: - parent: 15 pos: -13.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1129 +- uid: 1113 type: reinforced_wall components: - parent: 15 pos: -14.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1130 +- uid: 1114 type: reinforced_wall components: - parent: 15 pos: -15.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1131 +- uid: 1115 type: reinforced_wall components: - parent: 15 pos: -16.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1132 +- uid: 1116 type: reinforced_wall components: - parent: 15 pos: -16.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1133 +- uid: 1117 type: reinforced_wall components: - parent: 15 pos: -15.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1134 +- uid: 1118 type: reinforced_wall components: - parent: 15 pos: -14.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1135 +- uid: 1119 type: reinforced_wall components: - parent: 15 pos: -13.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1136 +- uid: 1120 type: reinforced_wall components: - parent: 15 pos: -12.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1137 +- uid: 1121 type: reinforced_wall components: - parent: 15 pos: -11.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1138 +- uid: 1122 type: reinforced_wall components: - parent: 15 pos: -10.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1139 +- uid: 1123 type: Wire components: - parent: 15 pos: -9.5,26.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1140 +- uid: 1124 type: reinforced_wall components: - parent: 15 pos: -16.5,21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1141 +- uid: 1125 type: reinforced_wall components: - parent: 15 pos: -16.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1142 +- uid: 1126 type: reinforced_wall components: - parent: 15 pos: -16.5,19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1143 +- uid: 1127 type: reinforced_wall components: - parent: 15 pos: -16.5,18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1144 +- uid: 1128 type: reinforced_wall components: - parent: 15 pos: -16.5,17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1145 +- uid: 1129 type: reinforced_wall components: - parent: 15 pos: -15.5,21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1146 +- uid: 1130 type: reinforced_wall components: - parent: 15 pos: -15.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1147 +- uid: 1131 type: reinforced_wall components: - parent: 15 pos: -15.5,19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1148 +- uid: 1132 type: reinforced_wall components: - parent: 15 pos: -15.5,18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1149 +- uid: 1133 type: reinforced_wall components: - parent: 15 pos: -15.5,17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1150 +- uid: 1134 type: reinforced_wall components: - parent: 15 pos: -14.5,17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1151 +- uid: 1135 type: reinforced_wall components: - parent: 15 pos: -13.5,17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1152 +- uid: 1136 type: reinforced_wall components: - parent: 15 pos: -11.5,17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1153 +- uid: 1137 type: reinforced_wall components: - parent: 15 pos: -10.5,17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1154 +- uid: 1138 type: reinforced_wall components: - parent: 15 pos: -10.5,18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1155 +- uid: 1139 type: reinforced_wall components: - parent: 15 pos: -10.5,19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1156 +- uid: 1140 type: reinforced_wall components: - parent: 15 pos: -14.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1157 +- uid: 1141 type: reinforced_wall components: - parent: 15 pos: -14.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1158 +- uid: 1142 type: reinforced_wall components: - parent: 15 pos: -14.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1159 +- uid: 1143 type: reinforced_wall components: - parent: 15 pos: -13.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1160 +- uid: 1144 type: reinforced_wall components: - parent: 15 pos: -12.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1161 +- uid: 1145 type: reinforced_wall components: - parent: 15 pos: -11.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1162 +- uid: 1146 type: reinforced_wall components: - parent: 15 pos: -10.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1163 +- uid: 1147 type: reinforced_wall components: - parent: 15 pos: -10.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1164 +- uid: 1148 type: reinforced_wall components: - parent: 15 pos: -10.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1165 +- uid: 1149 type: reinforced_wall components: - parent: 15 pos: -10.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1166 +- uid: 1150 type: reinforced_wall components: - parent: 15 pos: -14.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1167 +- uid: 1151 type: reinforced_wall components: - parent: 15 pos: -15.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1168 +- uid: 1152 type: reinforced_wall components: - parent: 15 pos: -15.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1169 +- uid: 1153 type: reinforced_wall components: - parent: 15 pos: -15.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1170 +- uid: 1154 type: reinforced_wall components: - parent: 15 pos: -15.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1171 +- uid: 1155 type: AirlockMaintSecLocked components: - parent: 15 pos: -14.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1172 +- uid: 1156 type: reinforced_wall components: - parent: 15 pos: -14.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1173 +- uid: 1157 type: reinforced_wall components: - parent: 15 pos: -14.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1174 +- uid: 1158 type: solid_wall components: - parent: 15 pos: -6.5,18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1175 +- uid: 1159 type: LowWall components: - parent: 15 pos: -10.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1176 +- uid: 1160 type: solid_wall components: - parent: 15 pos: -9.5,18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1177 +- uid: 1161 type: solid_wall components: - parent: 15 pos: -10.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1178 +- uid: 1162 type: solid_wall components: - parent: 15 pos: -10.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1179 +- uid: 1163 type: solid_wall components: - parent: 15 pos: -10.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1180 +- uid: 1164 type: solid_wall components: - parent: 15 pos: -11.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1181 +- uid: 1165 type: solid_wall components: - parent: 15 pos: -12.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1182 +- uid: 1166 type: solid_wall components: - parent: 15 pos: -13.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1183 +- uid: 1167 type: solid_wall components: - parent: 15 pos: -5.5,18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1184 +- uid: 1168 type: reinforced_wall components: - parent: 15 pos: 1.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1185 +- uid: 1169 type: reinforced_wall components: - parent: 15 pos: 1.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1186 +- uid: 1170 type: reinforced_wall components: - parent: 15 pos: 1.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1187 +- uid: 1171 type: reinforced_wall components: - parent: 15 pos: 1.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1188 +- uid: 1172 type: reinforced_wall components: - parent: 15 pos: 1.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1189 +- uid: 1173 type: reinforced_wall components: - parent: 15 pos: 1.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1190 +- uid: 1174 type: reinforced_wall components: - parent: 15 pos: 1.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1191 +- uid: 1175 type: reinforced_wall components: - parent: 15 pos: 1.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1192 +- uid: 1176 type: reinforced_wall components: - parent: 15 pos: 1.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1193 +- uid: 1177 type: reinforced_wall components: - parent: 15 pos: -4.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1194 +- uid: 1178 type: reinforced_wall components: - parent: 15 pos: -1.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1195 +- uid: 1179 type: reinforced_wall components: - parent: 15 pos: -7.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1196 +- uid: 1180 type: solid_wall components: - parent: 15 pos: -4.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1197 +- uid: 1181 type: solid_wall components: - parent: 15 pos: -4.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1198 +- uid: 1182 type: solid_wall components: - parent: 15 pos: -4.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1199 +- uid: 1183 type: solid_wall components: - parent: 15 pos: -1.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1200 +- uid: 1184 type: solid_wall components: - parent: 15 pos: -1.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1201 +- uid: 1185 type: solid_wall components: - parent: 15 pos: -1.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1202 +- uid: 1186 type: LowWall components: - parent: 15 pos: -0.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1203 +- uid: 1187 type: LowWall components: - parent: 15 pos: -3.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1204 +- uid: 1188 type: LowWall components: - parent: 15 pos: -7.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1205 +- uid: 1189 type: LowWall components: - parent: 15 pos: -8.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1206 +- uid: 1190 type: solid_wall components: - parent: 15 pos: -15.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1207 +- uid: 1191 type: solid_wall components: - parent: 15 pos: -17.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1208 +- uid: 1192 type: solid_wall components: - parent: 15 pos: -18.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1209 +- uid: 1193 type: solid_wall components: - parent: 15 pos: -18.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1210 +- uid: 1194 type: solid_wall components: - parent: 15 pos: -18.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1211 +- uid: 1195 type: solid_wall components: - parent: 15 pos: -18.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1212 +- uid: 1196 type: solid_wall components: - parent: 15 pos: -18.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1213 +- uid: 1197 type: solid_wall components: - parent: 15 pos: -18.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1214 +- uid: 1198 type: solid_wall components: - parent: 15 pos: -19.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1215 +- uid: 1199 type: solid_wall components: - parent: 15 pos: -18.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1216 +- uid: 1200 type: solid_wall components: - parent: 15 pos: -19.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1217 +- uid: 1201 type: solid_wall components: - parent: 15 pos: -19.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1218 +- uid: 1202 type: solid_wall components: - parent: 15 pos: -19.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1219 +- uid: 1203 type: solid_wall components: - parent: 15 pos: -19.5,17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1220 +- uid: 1204 type: solid_wall components: - parent: 15 pos: -19.5,18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1221 +- uid: 1205 type: solid_wall components: - parent: 15 pos: -19.5,19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1222 +- uid: 1206 type: solid_wall components: - parent: 15 pos: -19.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1223 +- uid: 1207 type: solid_wall components: - parent: 15 pos: -19.5,21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1224 +- uid: 1208 type: solid_wall components: - parent: 15 pos: -19.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1225 +- uid: 1209 type: solid_wall components: - parent: 15 pos: -19.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1226 +- uid: 1210 type: solid_wall components: - parent: 15 pos: -19.5,24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1227 +- uid: 1211 type: solid_wall components: - parent: 15 pos: -19.5,25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1228 +- uid: 1212 type: solid_wall components: - parent: 15 pos: -19.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1229 +- uid: 1213 type: solid_wall components: - parent: 15 pos: -18.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1230 +- uid: 1214 type: solid_wall components: - parent: 15 pos: -17.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1231 +- uid: 1215 type: solid_wall components: - parent: 15 pos: -16.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1232 +- uid: 1216 type: solid_wall components: - parent: 15 pos: -15.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1233 +- uid: 1217 type: solid_wall components: - parent: 15 pos: -14.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1234 +- uid: 1218 type: solid_wall components: - parent: 15 pos: -13.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1235 +- uid: 1219 type: solid_wall components: - parent: 15 pos: -12.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1236 +- uid: 1220 type: solid_wall components: - parent: 15 pos: -11.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1237 +- uid: 1221 type: solid_wall components: - parent: 15 pos: -10.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1238 +- uid: 1222 type: solid_wall components: - parent: 15 pos: -9.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1239 +- uid: 1223 type: solid_wall components: - parent: 15 pos: -8.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1240 +- uid: 1224 type: solid_wall components: - parent: 15 pos: -7.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1241 +- uid: 1225 type: solid_wall components: - parent: 15 pos: -6.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1242 +- uid: 1226 type: solid_wall components: - parent: 15 pos: -6.5,25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1243 +- uid: 1227 type: solid_wall components: - parent: 15 pos: -4.5,25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1244 +- uid: 1228 type: solid_wall components: - parent: 15 pos: -5.5,25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1245 +- uid: 1229 type: solid_wall components: - parent: 15 pos: -20.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1246 +- uid: 1230 type: solid_wall components: - parent: 15 pos: -21.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1247 +- uid: 1231 type: solid_wall components: - parent: 15 pos: -22.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1248 +- uid: 1232 type: solid_wall components: - parent: 15 pos: -23.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1249 +- uid: 1233 type: solid_wall components: - parent: 15 pos: -24.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1250 +- uid: 1234 type: solid_wall components: - parent: 15 pos: -25.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1251 +- uid: 1235 type: solid_wall components: - parent: 15 pos: -26.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1252 +- uid: 1236 type: solid_wall components: - parent: 15 pos: -27.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1253 +- uid: 1237 type: solid_wall components: - parent: 15 pos: -28.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1254 +- uid: 1238 type: solid_wall components: - parent: 15 pos: -29.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1255 +- uid: 1239 type: solid_wall components: - parent: 15 pos: -30.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1256 +- uid: 1240 type: solid_wall components: - parent: 15 pos: -31.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1257 +- uid: 1241 type: solid_wall components: - parent: 15 pos: -32.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1258 +- uid: 1242 type: solid_wall components: - parent: 15 pos: -33.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1259 +- uid: 1243 type: solid_wall components: - parent: 15 pos: -33.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1260 +- uid: 1244 type: solid_wall components: - parent: 15 pos: -33.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1261 +- uid: 1245 type: solid_wall components: - parent: 15 pos: -33.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1262 +- uid: 1246 type: solid_wall components: - parent: 15 pos: -33.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1263 +- uid: 1247 type: solid_wall components: - parent: 15 pos: -33.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1264 +- uid: 1248 type: APC components: - parent: 15 pos: -34.5,-5.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1265 +- uid: 1249 type: solid_wall components: - parent: 15 pos: -33.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1266 +- uid: 1250 type: solid_wall components: - parent: 15 pos: -33.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1267 +- uid: 1251 type: solid_wall components: - parent: 15 pos: -32.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1268 +- uid: 1252 type: solid_wall components: - parent: 15 pos: -31.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1269 +- uid: 1253 type: solid_wall components: - parent: 15 pos: -30.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1270 +- uid: 1254 type: LowWall components: - parent: 15 pos: -28.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1271 +- uid: 1255 type: Window components: - parent: 15 pos: -8.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1272 +- uid: 1256 type: Window components: - parent: 15 pos: -7.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1273 +- uid: 1257 type: solid_wall components: - parent: 15 pos: -26.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1274 +- uid: 1258 type: solid_wall components: - parent: 15 pos: -26.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1275 +- uid: 1259 type: solid_wall components: - parent: 15 pos: -25.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1276 +- uid: 1260 type: solid_wall components: - parent: 15 pos: -30.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1277 +- uid: 1261 type: solid_wall components: - parent: 15 pos: -30.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1278 +- uid: 1262 type: solid_wall components: - parent: 15 pos: -30.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1279 +- uid: 1263 type: solid_wall components: - parent: 15 pos: -30.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1280 +- uid: 1264 type: solid_wall components: - parent: 15 pos: -30.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1281 +- uid: 1265 type: solid_wall components: - parent: 15 pos: -30.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1282 +- uid: 1266 type: solid_wall components: - parent: 15 pos: -28.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1283 +- uid: 1267 type: solid_wall components: - parent: 15 pos: -27.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1284 +- uid: 1268 type: solid_wall components: - parent: 15 pos: -26.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1285 +- uid: 1269 type: solid_wall components: - parent: 15 pos: -25.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1286 +- uid: 1270 type: solid_wall components: - parent: 15 pos: -24.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1287 +- uid: 1271 type: solid_wall components: - parent: 15 pos: -23.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1288 +- uid: 1272 type: solid_wall components: - parent: 15 pos: -22.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1289 +- uid: 1273 type: solid_wall components: - parent: 15 pos: -29.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1290 +- uid: 1274 type: solid_wall components: - parent: 15 pos: -22.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1291 +- uid: 1275 type: solid_wall components: - parent: 15 pos: -22.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1292 +- uid: 1276 type: solid_wall components: - parent: 15 pos: -21.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1293 +- uid: 1277 type: solid_wall components: - parent: 15 pos: -22.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1294 +- uid: 1278 type: solid_wall components: - parent: 15 pos: -22.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1295 +- uid: 1279 type: solid_wall components: - parent: 15 pos: -22.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1296 +- uid: 1280 type: solid_wall components: - parent: 15 pos: -21.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1297 +- uid: 1281 type: solid_wall components: - parent: 15 pos: -21.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1298 +- uid: 1282 type: solid_wall components: - parent: 15 pos: -20.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1299 +- uid: 1283 type: solid_wall components: - parent: 15 pos: -19.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1300 +- uid: 1284 type: solid_wall components: - parent: 15 pos: -25.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1301 +- uid: 1285 type: LowWall components: - parent: 15 pos: -25.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1302 +- uid: 1286 type: LowWall components: - parent: 15 pos: -2.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1303 +- uid: 1287 type: LowWall components: - parent: 15 pos: -3.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1304 +- uid: 1288 type: LowWall components: - parent: 15 pos: -0.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1305 +- uid: 1289 type: LowWall components: - parent: 15 pos: 0.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1306 +- uid: 1290 type: LowWall components: - parent: 15 pos: 14.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1307 +- uid: 1291 type: solid_wall components: - parent: 15 pos: 30.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1308 +- uid: 1292 type: solid_wall components: - parent: 15 pos: 30.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1309 +- uid: 1293 type: solid_wall components: - parent: 15 pos: 29.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1310 +- uid: 1294 type: solid_wall components: - parent: 15 pos: 28.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1311 +- uid: 1295 type: solid_wall components: - parent: 15 pos: 27.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1312 +- uid: 1296 type: solid_wall components: - parent: 15 pos: 26.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1313 +- uid: 1297 type: solid_wall components: - parent: 15 pos: 25.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1314 +- uid: 1298 type: solid_wall components: - parent: 15 pos: 24.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1315 +- uid: 1299 type: solid_wall components: - parent: 15 pos: 24.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1316 +- uid: 1300 type: solid_wall components: - parent: 15 pos: 24.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1317 +- uid: 1301 type: solid_wall components: - parent: 15 pos: 24.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1318 +- uid: 1302 type: solid_wall components: - parent: 15 pos: 23.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1319 +- uid: 1303 type: solid_wall components: - parent: 15 pos: 22.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1320 +- uid: 1304 type: solid_wall components: - parent: 15 pos: 19.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1321 +- uid: 1305 type: solid_wall components: - parent: 15 pos: 18.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1322 +- uid: 1306 type: solid_wall components: - parent: 15 pos: 17.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1323 +- uid: 1307 type: solid_wall components: - parent: 15 pos: 16.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1324 +- uid: 1308 type: solid_wall components: - parent: 15 pos: 15.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1325 +- uid: 1309 type: solid_wall components: - parent: 15 pos: 14.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1326 +- uid: 1310 type: solid_wall components: - parent: 15 pos: 13.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1327 +- uid: 1311 type: solid_wall components: - parent: 15 pos: 12.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1328 +- uid: 1312 type: solid_wall components: - parent: 15 pos: 6.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1329 +- uid: 1313 type: solid_wall components: - parent: 15 pos: 5.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1330 +- uid: 1314 type: solid_wall components: - parent: 15 pos: 5.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1331 +- uid: 1315 type: solid_wall components: - parent: 15 pos: 20.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1332 +- uid: 1316 type: solid_wall components: - parent: 15 pos: 19.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1333 +- uid: 1317 type: solid_wall components: - parent: 15 pos: 19.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1334 +- uid: 1318 type: solid_wall components: - parent: 15 pos: 19.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1335 +- uid: 1319 type: solid_wall components: - parent: 15 pos: 19.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1336 +- uid: 1320 type: solid_wall components: - parent: 15 pos: 19.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1337 +- uid: 1321 type: solid_wall components: - parent: 15 pos: 13.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1338 +- uid: 1322 type: solid_wall components: - parent: 15 pos: 13.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1339 +- uid: 1323 type: solid_wall components: - parent: 15 pos: 14.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1340 +- uid: 1324 type: solid_wall components: - parent: 15 pos: 13.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1341 +- uid: 1325 type: solid_wall components: - parent: 15 pos: 5.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1342 +- uid: 1326 type: solid_wall components: - parent: 15 pos: 5.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1343 +- uid: 1327 type: solid_wall components: - parent: 15 pos: 5.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1344 +- uid: 1328 type: solid_wall components: - parent: 15 pos: 5.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1345 +- uid: 1329 type: solid_wall components: - parent: 15 pos: 5.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1346 +- uid: 1330 type: solid_wall components: - parent: 15 pos: 5.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1347 +- uid: 1331 type: solid_wall components: - parent: 15 pos: 5.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1348 +- uid: 1332 type: LowWall components: - parent: 15 pos: 5.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1349 +- uid: 1333 type: LowWall components: - parent: 15 pos: 5.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1350 +- uid: 1334 type: LowWall components: - parent: 15 pos: 5.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1351 +- uid: 1335 type: LowWall components: - parent: 15 pos: 13.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1352 +- uid: 1336 type: LowWall components: - parent: 15 pos: 13.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1353 +- uid: 1337 type: LowWall components: - parent: 15 pos: 13.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1354 +- uid: 1338 type: LowWall components: - parent: 15 pos: 16.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1355 +- uid: 1339 type: LowWall components: - parent: 15 pos: 11.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1356 +- uid: 1340 type: LowWall components: - parent: 15 pos: 10.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1357 +- uid: 1341 type: LowWall components: - parent: 15 pos: 9.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1358 +- uid: 1342 type: LowWall components: - parent: 15 pos: 8.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1359 +- uid: 1343 type: LowWall components: - parent: 15 pos: 7.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1360 +- uid: 1344 type: LowWall components: - parent: 15 pos: 6.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1361 +- uid: 1345 type: LowWall components: - parent: 15 pos: 9.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1362 +- uid: 1346 type: LowWall components: - parent: 15 pos: 8.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1363 +- uid: 1347 type: LowWall components: - parent: 15 pos: 13.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1364 +- uid: 1348 type: LowWall components: - parent: 15 pos: 13.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1365 +- uid: 1349 type: LowWall components: - parent: 15 pos: 12.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1366 +- uid: 1350 type: LowWall components: - parent: 15 pos: 18.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1367 +- uid: 1351 type: solid_wall components: - parent: 15 pos: 19.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1368 +- uid: 1352 type: solid_wall components: - parent: 15 pos: 20.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1369 +- uid: 1353 type: solid_wall components: - parent: 15 pos: 21.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1370 +- uid: 1354 type: solid_wall components: - parent: 15 pos: 22.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1371 +- uid: 1355 type: solid_wall components: - parent: 15 pos: 23.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1372 +- uid: 1356 type: solid_wall components: - parent: 15 pos: 24.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1373 +- uid: 1357 type: solid_wall components: - parent: 15 pos: 25.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1374 +- uid: 1358 type: solid_wall components: - parent: 15 pos: 25.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1375 +- uid: 1359 type: solid_wall components: - parent: 15 pos: 25.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1377 +- uid: 1360 type: solid_wall components: - parent: 15 pos: 25.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1378 +- uid: 1361 type: solid_wall components: - parent: 15 pos: 25.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1379 +- uid: 1362 type: solid_wall components: - parent: 15 pos: 24.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1380 +- uid: 1363 type: solid_wall components: - parent: 15 pos: 23.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1381 +- uid: 1364 type: solid_wall components: - parent: 15 pos: 22.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1382 +- uid: 1365 type: solid_wall components: - parent: 15 pos: 21.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1383 +- uid: 1366 type: solid_wall components: - parent: 15 pos: 20.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1384 +- uid: 1367 type: solid_wall components: - parent: 15 pos: 20.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1385 +- uid: 1368 type: solid_wall components: - parent: 15 pos: 16.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1386 +- uid: 1369 type: solid_wall components: - parent: 15 pos: 20.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1387 +- uid: 1370 type: solid_wall components: - parent: 15 pos: 20.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1388 +- uid: 1371 type: Window components: - parent: 15 pos: 20.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1389 +- uid: 1372 type: solid_wall components: - parent: 15 pos: 20.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1390 +- uid: 1373 type: solid_wall components: - parent: 15 pos: 21.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1391 +- uid: 1374 type: solid_wall components: - parent: 15 pos: 22.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1392 +- uid: 1375 type: solid_wall components: - parent: 15 pos: 23.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1393 +- uid: 1376 type: solid_wall components: - parent: 15 pos: 24.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1394 +- uid: 1377 type: solid_wall components: - parent: 15 pos: 25.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1395 +- uid: 1378 type: solid_wall components: - parent: 15 pos: 25.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1396 +- uid: 1379 type: solid_wall components: - parent: 15 pos: 25.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1397 +- uid: 1380 type: solid_wall components: - parent: 15 pos: 25.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1398 +- uid: 1381 type: solid_wall components: - parent: 15 pos: 25.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1399 +- uid: 1382 type: solid_wall components: - parent: 15 pos: 25.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1400 +- uid: 1383 type: solid_wall components: - parent: 15 pos: 24.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1401 +- uid: 1384 type: solid_wall components: - parent: 15 pos: 23.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1402 +- uid: 1385 type: solid_wall components: - parent: 15 pos: 22.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1403 +- uid: 1386 type: solid_wall components: - parent: 15 pos: 21.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1404 +- uid: 1387 type: solid_wall components: - parent: 15 pos: 20.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1405 +- uid: 1388 type: Window components: - parent: 15 pos: 20.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1406 +- uid: 1389 type: solid_wall components: - parent: 15 pos: 15.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1407 +- uid: 1390 type: solid_wall components: - parent: 15 pos: 20.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1408 +- uid: 1391 type: solid_wall components: - parent: 15 pos: 20.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1409 +- uid: 1392 type: solid_wall components: - parent: 15 pos: 46.5,5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1410 +- uid: 1393 type: solid_wall components: - parent: 15 pos: 45.5,5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1411 +- uid: 1394 type: solid_wall components: - parent: 15 pos: 48.5,5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1412 +- uid: 1395 type: LowWall components: - parent: 15 pos: 20.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1413 +- uid: 1396 type: LowWall components: - parent: 15 pos: 20.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1414 +- uid: 1397 type: LowWall components: - parent: 15 pos: 11.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1415 +- uid: 1398 type: LowWall components: - parent: 15 pos: 11.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1416 +- uid: 1399 type: LowWall components: - parent: 15 pos: 9.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1417 +- uid: 1400 type: Window components: - parent: 15 pos: 9.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1418 +- uid: 1401 type: solid_wall components: - parent: 15 pos: 11.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1419 +- uid: 1402 type: Window components: - parent: 15 pos: 11.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1420 +- uid: 1403 type: solid_wall components: - parent: 15 pos: 6.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1421 +- uid: 1404 type: Window components: - parent: 15 pos: 20.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1422 +- uid: 1405 type: solid_wall components: - parent: 15 pos: 6.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1423 +- uid: 1406 type: solid_wall components: - parent: 15 pos: 6.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1424 +- uid: 1407 type: solid_wall components: - parent: 15 pos: 6.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1425 +- uid: 1408 type: solid_wall components: - parent: 15 pos: 6.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1426 +- uid: 1409 type: solid_wall components: - parent: 15 pos: 6.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1427 +- uid: 1410 type: solid_wall components: - parent: 15 pos: 7.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1428 +- uid: 1411 type: solid_wall components: - parent: 15 pos: 8.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1429 +- uid: 1412 type: solid_wall components: - parent: 15 pos: 9.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1430 +- uid: 1413 type: solid_wall components: - parent: 15 pos: 10.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1431 +- uid: 1414 type: solid_wall components: - parent: 15 pos: 11.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1432 +- uid: 1415 type: Window components: - parent: 15 pos: 11.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1433 +- uid: 1416 type: solid_wall components: - parent: 15 pos: 11.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1434 +- uid: 1417 type: solid_wall components: - parent: 15 pos: 12.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1435 +- uid: 1418 type: solid_wall components: - parent: 15 pos: 13.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1436 +- uid: 1419 type: solid_wall components: - parent: 15 pos: 6.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1437 +- uid: 1420 type: solid_wall components: - parent: 15 pos: 6.5,-20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1438 +- uid: 1421 type: solid_wall components: - parent: 15 pos: 28.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1439 +- uid: 1422 type: solid_wall components: - parent: 15 pos: 28.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1440 +- uid: 1423 type: solid_wall components: - parent: 15 pos: 28.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1441 +- uid: 1424 type: solid_wall components: - parent: 15 pos: 28.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1442 +- uid: 1425 type: solid_wall components: - parent: 15 pos: 28.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1443 +- uid: 1426 type: solid_wall components: - parent: 15 pos: 29.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1444 +- uid: 1427 type: solid_wall components: - parent: 15 pos: 30.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1445 +- uid: 1428 type: solid_wall components: - parent: 15 pos: 31.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1446 +- uid: 1429 type: solid_wall components: - parent: 15 pos: 32.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1447 +- uid: 1430 type: solid_wall components: - parent: 15 pos: 34.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1448 +- uid: 1431 type: solid_wall components: - parent: 15 pos: 35.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1449 +- uid: 1432 type: solid_wall components: - parent: 15 pos: 36.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1450 +- uid: 1433 type: solid_wall components: - parent: 15 pos: 36.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1451 +- uid: 1434 type: solid_wall components: - parent: 15 pos: 36.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1452 +- uid: 1435 type: solid_wall components: - parent: 15 pos: 1.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1453 +- uid: 1436 type: solid_wall components: - parent: 15 pos: 1.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1454 +- uid: 1437 type: solid_wall components: - parent: 15 pos: 0.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1455 +- uid: 1438 type: solid_wall components: - parent: 15 pos: 1.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1456 +- uid: 1439 type: solid_wall components: - parent: 15 pos: 1.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1457 +- uid: 1440 type: solid_wall components: - parent: 15 pos: 1.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1458 +- uid: 1441 type: solid_wall components: - parent: 15 pos: 1.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1459 +- uid: 1442 type: solid_wall components: - parent: 15 pos: 0.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1460 +- uid: 1443 type: solid_wall components: - parent: 15 pos: -0.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1461 +- uid: 1444 type: solid_wall components: - parent: 15 pos: -1.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1462 +- uid: 1445 type: solid_wall components: - parent: 15 pos: -2.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1463 +- uid: 1446 type: solid_wall components: - parent: 15 pos: 1.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1464 +- uid: 1447 type: solid_wall components: - parent: 15 pos: 1.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1465 +- uid: 1448 type: solid_wall components: - parent: 15 pos: 1.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1466 +- uid: 1449 type: solid_wall components: - parent: 15 pos: 1.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1467 +- uid: 1450 type: solid_wall components: - parent: 15 pos: 1.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1468 +- uid: 1451 type: solid_wall components: - parent: 15 pos: 0.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1469 +- uid: 1452 type: solid_wall components: - parent: 15 pos: -0.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1470 +- uid: 1453 type: solid_wall components: - parent: 15 pos: -1.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1471 +- uid: 1454 type: solid_wall components: - parent: 15 pos: -2.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1472 +- uid: 1455 type: solid_wall components: - parent: 15 pos: 0.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1473 +- uid: 1456 type: solid_wall components: - parent: 15 pos: -5.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1474 +- uid: 1457 type: solid_wall components: - parent: 15 pos: 0.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1475 +- uid: 1458 type: solid_wall components: - parent: 15 pos: 0.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1476 +- uid: 1459 type: solid_wall components: - parent: 15 pos: -0.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1477 +- uid: 1460 type: solid_wall components: - parent: 15 pos: -6.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1478 +- uid: 1461 type: solid_wall components: - parent: 15 pos: -1.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1479 +- uid: 1462 type: solid_wall components: - parent: 15 pos: -2.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1480 +- uid: 1463 type: solid_wall components: - parent: 15 pos: -3.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1481 +- uid: 1464 type: AirlockServiceLocked components: - name: Freezer @@ -14457,1045 +10561,1071 @@ entities: pos: -12.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1482 +- uid: 1465 type: solid_wall components: - parent: 15 pos: -5.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1483 +- uid: 1466 type: solid_wall components: - parent: 15 pos: -6.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1484 +- uid: 1467 type: solid_wall components: - parent: 15 pos: -6.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1485 +- uid: 1468 type: solid_wall components: - parent: 15 pos: -6.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1486 +- uid: 1469 type: solid_wall components: - parent: 15 pos: -6.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1487 +- uid: 1470 type: solid_wall components: - parent: 15 pos: -6.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1488 +- uid: 1471 type: solid_wall components: - parent: 15 pos: -6.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1489 +- uid: 1472 type: solid_wall components: - parent: 15 pos: -6.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1490 +- uid: 1473 type: LowWall components: - parent: 15 pos: -2.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1491 +- uid: 1474 type: LowWall components: - parent: 15 pos: -4.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1492 +- uid: 1475 type: LowWall components: - parent: 15 pos: 0.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1493 +- uid: 1476 type: solid_wall components: - parent: 15 pos: -7.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1494 +- uid: 1477 type: solid_wall components: - parent: 15 pos: 1.5,-22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1495 +- uid: 1478 type: solid_wall components: - parent: 15 pos: 0.5,-22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1496 +- uid: 1479 type: solid_wall components: - parent: 15 pos: 0.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1497 +- uid: 1480 type: solid_wall components: - parent: 15 pos: -0.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1498 +- uid: 1481 type: solid_wall components: - parent: 15 pos: -1.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1499 +- uid: 1482 type: LowWall components: - parent: 15 pos: -4.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1500 +- uid: 1483 type: solid_wall components: - parent: 15 pos: -1.5,-22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1501 +- uid: 1484 type: solid_wall components: - parent: 15 pos: -1.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1502 +- uid: 1485 type: solid_wall components: - parent: 15 pos: -1.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1503 +- uid: 1486 type: solid_wall components: - parent: 15 pos: -1.5,-25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1504 +- uid: 1487 type: solid_wall components: - parent: 15 pos: -2.5,-25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1505 +- uid: 1488 type: solid_wall components: - parent: 15 pos: -3.5,-25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1506 +- uid: 1489 type: solid_wall components: - parent: 15 pos: -4.5,-25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1507 +- uid: 1490 type: solid_wall components: - parent: 15 pos: -5.5,-25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1508 +- uid: 1491 type: solid_wall components: - parent: 15 pos: -6.5,-25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1509 +- uid: 1492 type: solid_wall components: - parent: 15 pos: -6.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1510 +- uid: 1493 type: solid_wall components: - parent: 15 pos: -6.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1511 +- uid: 1494 type: solid_wall components: - parent: 15 pos: -6.5,-22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1512 +- uid: 1495 type: solid_wall components: - parent: 15 pos: -6.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1513 +- uid: 1496 type: LowWall components: - parent: 15 pos: -2.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1514 +- uid: 1497 type: LowWall components: - parent: 15 pos: -5.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1515 +- uid: 1498 type: solid_wall components: - parent: 15 pos: -9.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1516 +- uid: 1499 type: reinforced_wall components: - parent: 15 pos: -12.5,-27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1517 +- uid: 1500 type: reinforced_wall components: - parent: 15 pos: -13.5,-27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1518 +- uid: 1501 type: reinforced_wall components: - parent: 15 pos: -14.5,-27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1519 +- uid: 1502 type: reinforced_wall components: - parent: 15 pos: -15.5,-27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1520 +- uid: 1503 type: reinforced_wall components: - parent: 15 pos: -16.5,-27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1521 +- uid: 1504 type: reinforced_wall components: - parent: 15 pos: -17.5,-27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1522 +- uid: 1505 type: reinforced_wall components: - parent: 15 pos: -18.5,-27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1523 +- uid: 1506 type: reinforced_wall components: - parent: 15 pos: -18.5,-26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1524 +- uid: 1507 type: reinforced_wall components: - parent: 15 pos: -18.5,-25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1525 +- uid: 1508 type: reinforced_wall components: - parent: 15 pos: -18.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1526 +- uid: 1509 type: reinforced_wall components: - parent: 15 pos: -18.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1527 +- uid: 1510 type: reinforced_wall components: - parent: 15 pos: -17.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1528 +- uid: 1511 type: reinforced_wall components: - parent: 15 pos: -13.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1529 +- uid: 1512 type: reinforced_wall components: - parent: 15 pos: -12.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1530 +- uid: 1513 type: reinforced_wall components: - parent: 15 pos: -12.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1531 +- uid: 1514 type: reinforced_wall components: - parent: 15 pos: -12.5,-25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1532 +- uid: 1515 type: reinforced_wall components: - parent: 15 pos: -12.5,-26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1533 +- uid: 1516 type: solid_wall components: - parent: 15 pos: -12.5,-28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1534 +- uid: 1517 type: solid_wall components: - parent: 15 pos: -11.5,-28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1535 +- uid: 1518 type: solid_wall components: - parent: 15 pos: -10.5,-28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1536 +- uid: 1519 type: solid_wall components: - parent: 15 pos: -6.5,-28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1537 +- uid: 1520 type: solid_wall components: - parent: 15 pos: -5.5,-28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1538 +- uid: 1521 type: solid_wall components: - parent: 15 pos: -4.5,-28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1539 +- uid: 1522 type: solid_wall components: - parent: 15 pos: -3.5,-28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1540 +- uid: 1523 type: solid_wall components: - parent: 15 pos: -2.5,-28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1541 +- uid: 1524 type: solid_wall components: - parent: 15 pos: -1.5,-28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1542 +- uid: 1525 type: solid_wall components: - parent: 15 pos: -0.5,-28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1543 +- uid: 1526 type: solid_wall components: - parent: 15 pos: -10.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1544 +- uid: 1527 type: solid_wall components: - parent: 15 pos: -10.5,-22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1545 +- uid: 1528 type: solid_wall components: - parent: 15 pos: -10.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1546 +- uid: 1529 type: solid_wall components: - parent: 15 pos: -10.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1547 +- uid: 1530 type: solid_wall components: - parent: 15 pos: -10.5,-25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1548 +- uid: 1531 type: solid_wall components: - parent: 15 pos: -12.5,-22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1549 +- uid: 1532 type: solid_wall components: - parent: 15 pos: -12.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1550 +- uid: 1533 type: solid_wall components: - parent: 15 pos: -12.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1551 +- uid: 1534 type: solid_wall components: - parent: 15 pos: -12.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1552 +- uid: 1535 type: solid_wall components: - parent: 15 pos: -12.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1553 +- uid: 1536 type: solid_wall components: - parent: 15 pos: -11.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1554 +- uid: 1537 type: solid_wall components: - parent: 15 pos: -10.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1555 +- uid: 1538 type: solid_wall components: - parent: 15 pos: -9.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1556 +- uid: 1539 type: solid_wall components: - parent: 15 pos: -8.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1557 +- uid: 1540 type: solid_wall components: - parent: 15 pos: -7.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1558 +- uid: 1541 type: solid_wall components: - parent: 15 pos: -13.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1559 +- uid: 1542 type: solid_wall components: - parent: 15 pos: -14.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1560 +- uid: 1543 type: solid_wall components: - parent: 15 pos: -15.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1561 +- uid: 1544 type: solid_wall components: - parent: 15 pos: -17.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1562 +- uid: 1545 type: solid_wall components: - parent: 15 pos: -18.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1563 +- uid: 1546 type: solid_wall components: - parent: 15 pos: -18.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1564 +- uid: 1547 type: solid_wall components: - parent: 15 pos: -18.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1565 +- uid: 1548 type: solid_wall components: - parent: 15 pos: -18.5,-19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1566 +- uid: 1549 type: solid_wall components: - parent: 15 pos: -18.5,-20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1567 +- uid: 1550 type: solid_wall components: - parent: 15 pos: -18.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1568 +- uid: 1551 type: solid_wall components: - parent: 15 pos: -18.5,-22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1569 +- uid: 1552 type: Table components: - parent: 15 pos: 6.5,28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1570 +- uid: 1553 type: Table components: - parent: 15 pos: 5.5,28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1571 +- uid: 1554 type: VendingMachineCoffee components: - parent: 15 pos: 5.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1572 +- uid: 1555 type: ToolboxElectricalFilled components: - parent: 15 pos: 8.259691,28.555487 rot: -1.5707963267948966 rad type: Transform -- uid: 1573 + - anchored: False + type: Collidable + - containers: + storagebase: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 1556 type: solid_wall components: - parent: 15 pos: -16.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1574 +- uid: 1557 type: solid_wall components: - parent: 15 pos: -15.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1575 +- uid: 1558 type: solid_wall components: - parent: 15 pos: -14.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1576 +- uid: 1559 type: solid_wall components: - parent: 15 pos: -12.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1577 +- uid: 1560 type: solid_wall components: - parent: 15 pos: -11.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1578 +- uid: 1561 type: solid_wall components: - parent: 15 pos: -10.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1579 +- uid: 1562 type: solid_wall components: - parent: 15 pos: -10.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1580 +- uid: 1563 type: solid_wall components: - parent: 15 pos: -10.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1581 +- uid: 1564 type: solid_wall components: - parent: 15 pos: -10.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1582 +- uid: 1565 type: solid_wall components: - parent: 15 pos: -10.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1583 +- uid: 1566 type: solid_wall components: - parent: 15 pos: -10.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1584 +- uid: 1567 type: solid_wall components: - parent: 15 pos: -11.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1585 +- uid: 1568 type: solid_wall components: - parent: 15 pos: -13.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1586 +- uid: 1569 type: solid_wall components: - parent: 15 pos: -14.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1587 +- uid: 1570 type: solid_wall components: - parent: 15 pos: -15.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1588 +- uid: 1571 type: solid_wall components: - parent: 15 pos: -16.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1589 +- uid: 1572 type: solid_wall components: - parent: 15 pos: -16.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1590 +- uid: 1573 type: solid_wall components: - parent: 15 pos: -16.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1591 +- uid: 1574 type: solid_wall components: - parent: 15 pos: -16.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1592 +- uid: 1575 type: solid_wall components: - parent: 15 pos: -16.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1593 +- uid: 1576 type: solid_wall components: - parent: 15 pos: -9.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1594 +- uid: 1577 type: solid_wall components: - parent: 15 pos: -8.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1595 +- uid: 1578 type: solid_wall components: - parent: 15 pos: -7.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1596 +- uid: 1579 type: solid_wall components: - parent: 15 pos: -2.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1597 +- uid: 1580 type: solid_wall components: - parent: 15 pos: -2.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1598 +- uid: 1581 type: solid_wall components: - parent: 15 pos: -2.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1599 +- uid: 1582 type: solid_wall components: - parent: 15 pos: -3.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1600 +- uid: 1583 type: solid_wall components: - parent: 15 pos: -4.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1601 +- uid: 1584 type: solid_wall components: - parent: 15 pos: -5.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1602 +- uid: 1585 type: solid_wall components: - parent: 15 pos: -6.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1603 +- uid: 1586 type: solid_wall components: - parent: 15 pos: -7.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1604 +- uid: 1587 type: solid_wall components: - parent: 15 pos: -8.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1605 +- uid: 1588 type: solid_wall components: - parent: 15 pos: -8.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1606 +- uid: 1589 type: solid_wall components: - parent: 15 pos: -8.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1607 +- uid: 1590 type: solid_wall components: - parent: 15 pos: -7.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1608 +- uid: 1591 type: solid_wall components: - parent: 15 pos: -9.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1609 +- uid: 1592 type: solid_wall components: - parent: 15 pos: -10.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1610 +- uid: 1593 type: Table components: - parent: 15 pos: -15.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1611 +- uid: 1594 type: Table components: - parent: 15 pos: -15.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1612 +- uid: 1595 type: Table components: - parent: 15 pos: -29.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1613 +- uid: 1596 type: DisposalTrunk components: - parent: 15 pos: -10.5,-17.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 1614 + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 1597 type: VendingMachineSovietSoda components: - parent: 15 pos: -11.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1615 +- uid: 1598 type: ChairOfficeDark components: - parent: 15 pos: 40.5,-0.5 rot: 3.141592653589793 rad type: Transform -- uid: 1616 + - anchored: False + type: Collidable +- uid: 1599 type: solid_wall components: - parent: 15 pos: -10.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1617 +- uid: 1600 type: solid_wall components: - parent: 15 pos: -4.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1618 +- uid: 1601 type: solid_wall components: - parent: 15 pos: -9.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1619 +- uid: 1602 type: solid_wall components: - parent: 15 pos: -11.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1620 +- uid: 1603 type: Table components: - parent: 15 pos: 26.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1621 +- uid: 1604 type: Multitool components: - parent: 15 pos: 6.259919,28.557344 rot: -1.5707963267948966 rad type: Transform -- uid: 1622 + - anchored: False + type: Collidable +- uid: 1605 type: Medkit components: - parent: 15 pos: -0.959059,28.524237 rot: -1.5707963267948966 rad type: Transform -- uid: 1623 + - anchored: False + type: Collidable + - containers: + storagebase: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 1606 type: VendingMachineCola components: - parent: 15 pos: 29.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1624 +- uid: 1607 type: Table components: - parent: 15 pos: 28.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1625 +- uid: 1608 type: Table components: - parent: 15 pos: 20.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1626 +- uid: 1609 type: Table components: - parent: 15 pos: 19.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1627 +- uid: 1610 type: WeldingFuelTank components: - parent: 15 pos: -26.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1628 + - anchored: False + type: Collidable +- uid: 1611 type: WeldingFuelTank components: - parent: 15 pos: 35.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1629 + - anchored: False + type: Collidable +- uid: 1612 type: WeldingFuelTank components: - parent: 15 pos: -15.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1630 + - anchored: False + type: Collidable +- uid: 1613 type: DrinkMugMoebius components: - parent: 15 @@ -15504,466 +11634,482 @@ entities: type: Transform - caps: PourIn, PourOut, Injectable type: Solution -- uid: 1631 + - anchored: False + type: Collidable +- uid: 1614 type: VendingMachineSnack components: - parent: 15 pos: 9.5,28.5 rot: 3.141592653589793 rad type: Transform -- uid: 1632 +- uid: 1615 type: Table components: - parent: 15 pos: 0.5,28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1633 +- uid: 1616 type: Table components: - parent: 15 pos: 1.5,28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1634 +- uid: 1617 type: Table components: - parent: 15 pos: -0.5,28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1635 +- uid: 1618 type: solid_wall components: - parent: 15 pos: -21.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1636 +- uid: 1619 type: solid_wall components: - parent: 15 pos: -22.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1637 +- uid: 1620 type: Paper components: - parent: 15 pos: 9.543142,17.067865 rot: 3.141592653589793 rad type: Transform -- uid: 1638 + - anchored: False + type: Collidable +- uid: 1621 type: solid_wall components: - parent: 15 pos: -24.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1639 +- uid: 1622 type: solid_wall components: - parent: 15 pos: -25.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1640 +- uid: 1623 type: solid_wall components: - parent: 15 pos: -26.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1641 +- uid: 1624 type: solid_wall components: - parent: 15 pos: -27.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1642 +- uid: 1625 type: solid_wall components: - parent: 15 pos: -28.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1643 +- uid: 1626 type: solid_wall components: - parent: 15 pos: -29.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1644 +- uid: 1627 type: solid_wall components: - parent: 15 pos: -30.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1645 +- uid: 1628 type: solid_wall components: - parent: 15 pos: -31.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1646 +- uid: 1629 type: solid_wall components: - parent: 15 pos: -31.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1647 +- uid: 1630 type: solid_wall components: - parent: 15 pos: -31.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1648 +- uid: 1631 type: Table components: - parent: 15 pos: -1.5,28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1649 +- uid: 1632 type: Table components: - parent: 15 pos: -2.5,28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1650 +- uid: 1633 type: solid_wall components: - parent: 15 pos: -34.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1651 +- uid: 1634 type: solid_wall components: - parent: 15 pos: -34.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1652 +- uid: 1635 type: solid_wall components: - parent: 15 pos: -31.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1653 +- uid: 1636 type: solid_wall components: - parent: 15 pos: -31.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1654 +- uid: 1637 type: solid_wall components: - parent: 15 pos: -31.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1655 +- uid: 1638 type: solid_wall components: - parent: 15 pos: -30.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1656 +- uid: 1639 type: solid_wall components: - parent: 15 pos: -29.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1657 +- uid: 1640 type: solid_wall components: - parent: 15 pos: -28.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1658 +- uid: 1641 type: solid_wall components: - parent: 15 pos: -27.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1659 +- uid: 1642 type: solid_wall components: - parent: 15 pos: -26.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1660 +- uid: 1643 type: solid_wall components: - parent: 15 pos: -26.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1661 +- uid: 1644 type: solid_wall components: - parent: 15 pos: -26.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1662 +- uid: 1645 type: solid_wall components: - parent: 15 pos: -26.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1663 +- uid: 1646 type: solid_wall components: - parent: 15 pos: -26.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1664 +- uid: 1647 type: solid_wall components: - parent: 15 pos: -26.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1665 +- uid: 1648 type: Table components: - parent: 15 pos: -7.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1666 +- uid: 1649 type: solid_wall components: - parent: 15 pos: -21.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1667 +- uid: 1650 type: solid_wall components: - parent: 15 pos: -21.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1668 +- uid: 1651 type: solid_wall components: - parent: 15 pos: -20.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1669 +- uid: 1652 type: solid_wall components: - parent: 15 pos: -19.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1670 +- uid: 1653 type: solid_wall components: - parent: 15 pos: -18.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1671 +- uid: 1654 type: solid_wall components: - parent: 15 pos: -17.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1672 +- uid: 1655 type: SpawnPointLatejoin components: - parent: 15 pos: -36.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1673 +- uid: 1656 type: SpawnPointLatejoin components: - parent: 15 pos: -36.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1674 +- uid: 1657 type: CrateInternals components: - parent: 15 pos: 42.5,13.5 rot: -1.5707963267948966 rad type: Transform + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 1675 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 1658 type: CrateRadiation components: - parent: 15 pos: 43.5,13.5 rot: -1.5707963267948966 rad type: Transform + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 1676 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 1659 type: solid_wall components: - parent: 15 pos: -17.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1677 +- uid: 1660 type: solid_wall components: - parent: 15 pos: -17.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1678 +- uid: 1661 type: solid_wall components: - parent: 15 pos: -17.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1679 +- uid: 1662 type: solid_wall components: - parent: 15 pos: -18.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1680 +- uid: 1663 type: solid_wall components: - parent: 15 pos: -19.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1681 +- uid: 1664 type: solid_wall components: - parent: 15 pos: -20.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1682 +- uid: 1665 type: solid_wall components: - parent: 15 pos: -21.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1683 +- uid: 1666 type: solid_wall components: - parent: 15 pos: -21.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1689 +- uid: 1667 type: solid_wall components: - parent: 15 pos: -17.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1692 +- uid: 1668 type: solid_wall components: - parent: 15 pos: -20.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1693 +- uid: 1669 type: solid_wall components: - parent: 15 pos: -21.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1696 +- uid: 1670 type: solid_wall components: - parent: 15 pos: -21.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1697 +- uid: 1671 type: solid_wall components: - parent: 15 pos: -21.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1698 +- uid: 1672 type: solid_wall components: - parent: 15 pos: -21.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1699 +- uid: 1673 type: solid_wall components: - parent: 15 pos: -22.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1700 +- uid: 1674 type: solid_wall components: - parent: 15 pos: -25.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1701 +- uid: 1675 type: solid_wall components: - parent: 15 pos: -26.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1702 +- uid: 1676 type: solid_wall components: - parent: 15 pos: -26.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1703 +- uid: 1677 type: solid_wall components: - parent: 15 pos: -26.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1704 +- uid: 1678 type: solid_wall components: - parent: 15 pos: -27.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1705 +- uid: 1679 type: Poweredlight components: - parent: 15 @@ -15974,399 +12120,403 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 1706 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1680 type: Window components: - parent: 15 pos: -25.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1707 +- uid: 1681 type: solid_wall components: - parent: 15 pos: -30.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1708 +- uid: 1682 type: solid_wall components: - parent: 15 pos: -31.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1709 +- uid: 1683 type: solid_wall components: - parent: 15 pos: -31.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1710 +- uid: 1684 type: solid_wall components: - parent: 15 pos: -31.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1711 +- uid: 1685 type: solid_wall components: - parent: 15 pos: -31.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1712 +- uid: 1686 type: solid_wall components: - parent: 15 pos: -31.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1713 +- uid: 1687 type: solid_wall components: - parent: 15 pos: -31.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1714 +- uid: 1688 type: solid_wall components: - parent: 15 pos: -34.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1715 +- uid: 1689 type: solid_wall components: - parent: 15 pos: -34.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1716 +- uid: 1690 type: solid_wall components: - parent: 15 pos: -34.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1717 +- uid: 1691 type: solid_wall components: - parent: 15 pos: -34.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1718 +- uid: 1692 type: solid_wall components: - parent: 15 pos: -34.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1719 +- uid: 1693 type: solid_wall components: - parent: 15 pos: -34.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1720 +- uid: 1694 type: solid_wall components: - parent: 15 pos: -34.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1721 +- uid: 1695 type: solid_wall components: - parent: 15 pos: -34.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1722 +- uid: 1696 type: solid_wall components: - parent: 15 pos: -33.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1723 +- uid: 1697 type: solid_wall components: - parent: 15 pos: -33.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1724 +- uid: 1698 type: LowWall components: - parent: 15 pos: -5.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1725 +- uid: 1699 type: LowWall components: - parent: 15 pos: -6.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1726 +- uid: 1700 type: LowWall components: - parent: 15 pos: -7.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1727 +- uid: 1701 type: LowWall components: - parent: 15 pos: -8.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1728 +- uid: 1702 type: LowWall components: - parent: 15 pos: -35.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1729 +- uid: 1703 type: LowWall components: - parent: 15 pos: -36.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1730 +- uid: 1704 type: LowWall components: - parent: 15 pos: -37.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1731 +- uid: 1705 type: LowWall components: - parent: 15 pos: -38.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1732 +- uid: 1706 type: LowWall components: - parent: 15 pos: -38.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1733 +- uid: 1707 type: LowWall components: - parent: 15 pos: -38.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1734 +- uid: 1708 type: LowWall components: - parent: 15 pos: -38.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1735 +- uid: 1709 type: LowWall components: - parent: 15 pos: -38.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1736 +- uid: 1710 type: LowWall components: - parent: 15 pos: -39.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1737 +- uid: 1711 type: LowWall components: - parent: 15 pos: -37.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1738 +- uid: 1712 type: LowWall components: - parent: 15 pos: -39.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1739 +- uid: 1713 type: LowWall components: - parent: 15 pos: -38.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1740 +- uid: 1714 type: LowWall components: - parent: 15 pos: -37.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1741 +- uid: 1715 type: LowWall components: - parent: 15 pos: -38.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1742 +- uid: 1716 type: LowWall components: - parent: 15 pos: -38.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1743 +- uid: 1717 type: LowWall components: - parent: 15 pos: -38.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1744 +- uid: 1718 type: ReinforcedWindow components: - parent: 15 pos: -37.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1745 +- uid: 1719 type: LowWall components: - parent: 15 pos: -39.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1746 +- uid: 1720 type: LowWall components: - parent: 15 pos: -40.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1747 +- uid: 1721 type: LowWall components: - parent: 15 pos: -40.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1748 +- uid: 1722 type: LowWall components: - parent: 15 pos: -40.5,3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1749 +- uid: 1723 type: LowWall components: - parent: 15 pos: -41.5,3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1750 +- uid: 1724 type: LowWall components: - parent: 15 pos: -39.5,3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1751 +- uid: 1725 type: LowWall components: - parent: 15 pos: -39.5,5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1752 +- uid: 1726 type: LowWall components: - parent: 15 pos: -40.5,5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1753 +- uid: 1727 type: LowWall components: - parent: 15 pos: -41.5,5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1754 +- uid: 1728 type: LowWall components: - parent: 15 pos: -40.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1755 +- uid: 1729 type: LowWall components: - parent: 15 pos: -40.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1756 +- uid: 1730 type: LowWall components: - parent: 15 pos: -41.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1757 +- uid: 1731 type: LowWall components: - parent: 15 pos: -39.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1758 +- uid: 1732 type: LowWall components: - parent: 15 pos: -39.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1759 +- uid: 1733 type: LowWall components: - parent: 15 pos: -40.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1760 +- uid: 1734 type: LowWall components: - parent: 15 pos: -41.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1761 +- uid: 1735 type: LowWall components: - parent: 15 pos: -40.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1762 +- uid: 1736 type: Poweredlight components: - parent: 15 @@ -16377,110 +12527,108 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 1764 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1737 type: solid_wall components: - parent: 15 pos: -40.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1765 +- uid: 1738 type: LowWall components: - parent: 15 pos: -37.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1766 +- uid: 1739 type: LowWall components: - parent: 15 pos: -36.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1767 +- uid: 1740 type: LowWall components: - parent: 15 pos: -35.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1769 +- uid: 1741 type: Catwalk components: - parent: 15 pos: -32.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1770 +- uid: 1742 type: solid_wall components: - parent: 15 pos: 0.5,21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1771 +- uid: 1743 type: ReinforcedWindow components: - parent: 15 pos: 30.5,4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1772 +- uid: 1744 type: Window components: - parent: 15 pos: 32.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1773 +- uid: 1745 type: Window components: - parent: 15 pos: 34.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1774 +- uid: 1746 type: Window components: - parent: 15 pos: 36.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1775 +- uid: 1747 type: Window components: - parent: 15 pos: 37.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1776 +- uid: 1748 type: Window components: - parent: 15 pos: 39.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1777 +- uid: 1749 type: Window components: - parent: 15 pos: 40.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1778 +- uid: 1750 type: APC components: - parent: 15 pos: -11.5,2.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1780 +- uid: 1751 type: Poweredlight components: - parent: 15 @@ -16491,1316 +12639,1246 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 1781 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1752 type: solid_wall components: - parent: 15 pos: -25.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1782 +- uid: 1753 type: solid_wall components: - parent: 15 pos: -25.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1783 +- uid: 1754 type: Window components: - parent: 15 pos: 32.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1784 +- uid: 1755 type: Window components: - parent: 15 pos: 34.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1785 +- uid: 1756 type: ReinforcedWindow components: - parent: 15 pos: 30.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1786 +- uid: 1757 type: ReinforcedWindow components: - parent: 15 pos: 30.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1787 +- uid: 1758 type: ReinforcedWindow components: - parent: 15 pos: 31.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1788 +- uid: 1759 type: ReinforcedWindow components: - parent: 15 pos: 32.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1789 +- uid: 1760 type: ReinforcedWindow components: - parent: 15 pos: 33.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1790 +- uid: 1761 type: ReinforcedWindow components: - parent: 15 pos: 34.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1791 +- uid: 1762 type: ReinforcedWindow components: - parent: 15 pos: 35.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1792 +- uid: 1763 type: ReinforcedWindow components: - parent: 15 pos: 36.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1793 +- uid: 1764 type: ReinforcedWindow components: - parent: 15 pos: 36.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1794 +- uid: 1765 type: ReinforcedWindow components: - parent: 15 pos: 28.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1795 +- uid: 1766 type: ReinforcedWindow components: - parent: 15 pos: 27.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1796 +- uid: 1767 type: ReinforcedWindow components: - parent: 15 pos: 26.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1797 +- uid: 1768 type: ReinforcedWindow components: - parent: 15 pos: 24.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1798 +- uid: 1769 type: ReinforcedWindow components: - parent: 15 pos: 23.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1799 +- uid: 1770 type: ReinforcedWindow components: - parent: 15 pos: 23.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1800 +- uid: 1771 type: ReinforcedWindow components: - parent: 15 pos: 23.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1801 +- uid: 1772 type: ReinforcedWindow components: - parent: 15 pos: 21.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1802 +- uid: 1773 type: ReinforcedWindow components: - parent: 15 pos: 21.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1803 +- uid: 1774 type: ReinforcedWindow components: - parent: 15 pos: 21.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1804 +- uid: 1775 type: ReinforcedWindow components: - parent: 15 pos: 18.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1805 +- uid: 1776 type: LowWall components: - parent: 15 pos: 14.5,18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1806 +- uid: 1777 type: LowWall components: - parent: 15 pos: 14.5,19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1807 +- uid: 1778 type: LowWall components: - parent: 15 pos: 14.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1808 +- uid: 1779 type: ReinforcedWindow components: - parent: 15 pos: 14.5,18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1809 +- uid: 1780 type: ReinforcedWindow components: - parent: 15 pos: 14.5,19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1810 +- uid: 1781 type: ReinforcedWindow components: - parent: 15 pos: 14.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1811 +- uid: 1782 type: ReinforcedWindow components: - parent: 15 pos: 6.5,18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1812 +- uid: 1783 type: ReinforcedWindow components: - parent: 15 pos: 6.5,19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1813 +- uid: 1784 type: ReinforcedWindow components: - parent: 15 pos: 8.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1814 +- uid: 1785 type: Window components: - parent: 15 pos: 14.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1815 +- uid: 1786 type: Window components: - parent: 15 pos: 19.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1816 +- uid: 1787 type: Window components: - parent: 15 pos: 20.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1817 +- uid: 1788 type: Window components: - parent: 15 pos: 21.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1818 +- uid: 1789 type: Window components: - parent: 15 pos: 22.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1819 +- uid: 1790 type: Window components: - parent: 15 pos: 13.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1820 +- uid: 1791 type: Window components: - parent: 15 pos: 13.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1821 +- uid: 1792 type: Window components: - parent: 15 pos: 13.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1822 +- uid: 1793 type: Window components: - parent: 15 pos: 11.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1823 +- uid: 1794 type: Window components: - parent: 15 pos: 10.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1824 +- uid: 1795 type: Window components: - parent: 15 pos: 9.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1825 +- uid: 1796 type: Window components: - parent: 15 pos: 8.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1826 +- uid: 1797 type: Window components: - parent: 15 pos: 7.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1827 +- uid: 1798 type: Window components: - parent: 15 pos: 8.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1828 +- uid: 1799 type: Window components: - parent: 15 pos: 9.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1829 +- uid: 1800 type: Window components: - parent: 15 pos: 6.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1830 +- uid: 1801 type: Window components: - parent: 15 pos: 12.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1831 +- uid: 1802 type: Window components: - parent: 15 pos: 13.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1832 +- uid: 1803 type: Window components: - parent: 15 pos: 13.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1833 +- uid: 1804 type: Window components: - parent: 15 pos: 16.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1834 +- uid: 1805 type: Window components: - parent: 15 pos: 18.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1835 +- uid: 1806 type: LowWall components: - parent: 15 pos: 20.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1836 +- uid: 1807 type: LowWall components: - parent: 15 pos: 20.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1837 +- uid: 1808 type: Window components: - parent: 15 pos: 20.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1838 +- uid: 1809 type: LowWall components: - parent: 15 pos: 10.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1839 +- uid: 1810 type: LowWall components: - parent: 15 pos: 7.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1840 +- uid: 1811 type: LowWall components: - parent: 15 pos: 11.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1841 +- uid: 1812 type: LowWall components: - parent: 15 pos: 11.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1842 +- uid: 1813 type: Window components: - parent: 15 pos: 11.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1843 +- uid: 1814 type: Window components: - parent: 15 pos: 11.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1844 +- uid: 1815 type: Window components: - parent: 15 pos: 10.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1845 +- uid: 1816 type: Window components: - parent: 15 pos: 7.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1846 +- uid: 1817 type: Window components: - parent: 15 pos: 5.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1847 +- uid: 1818 type: Window components: - parent: 15 pos: 5.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1848 +- uid: 1819 type: Window components: - parent: 15 pos: 5.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1849 +- uid: 1820 type: Window components: - parent: 15 pos: 0.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1850 +- uid: 1821 type: Window components: - parent: 15 pos: -2.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1851 +- uid: 1822 type: Window components: - parent: 15 pos: -4.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1852 +- uid: 1823 type: Window components: - parent: 15 pos: -5.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1853 +- uid: 1824 type: Window components: - parent: 15 pos: -4.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1854 +- uid: 1825 type: Window components: - parent: 15 pos: -2.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1855 +- uid: 1826 type: Window components: - parent: 15 pos: -5.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1856 +- uid: 1827 type: Window components: - parent: 15 pos: -6.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1857 +- uid: 1828 type: Window components: - parent: 15 pos: -27.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1858 +- uid: 1829 type: Window components: - parent: 15 pos: -28.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1859 +- uid: 1830 type: Window components: - parent: 15 pos: -29.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1860 +- uid: 1831 type: LowWall components: - parent: 15 pos: -29.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1861 +- uid: 1832 type: LowWall components: - parent: 15 pos: -27.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1862 +- uid: 1833 type: ReinforcedWindow components: - parent: 15 pos: -35.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1863 +- uid: 1834 type: ReinforcedWindow components: - parent: 15 pos: -36.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1864 +- uid: 1835 type: ReinforcedWindow components: - parent: 15 pos: -37.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1865 +- uid: 1836 type: ReinforcedWindow components: - parent: 15 pos: -38.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1866 +- uid: 1837 type: ReinforcedWindow components: - parent: 15 pos: -38.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1867 +- uid: 1838 type: ReinforcedWindow components: - parent: 15 pos: -38.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1868 +- uid: 1839 type: ReinforcedWindow components: - parent: 15 pos: -38.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1869 +- uid: 1840 type: ReinforcedWindow components: - parent: 15 pos: -38.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1870 +- uid: 1841 type: ReinforcedWindow components: - parent: 15 pos: -37.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1871 +- uid: 1842 type: ReinforcedWindow components: - parent: 15 pos: -39.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1872 +- uid: 1843 type: ReinforcedWindow components: - parent: 15 pos: -38.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1873 +- uid: 1844 type: ReinforcedWindow components: - parent: 15 pos: -39.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1874 +- uid: 1845 type: solid_wall components: - parent: 15 pos: -38.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1875 +- uid: 1846 type: ReinforcedWindow components: - parent: 15 pos: -38.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1876 +- uid: 1847 type: ReinforcedWindow components: - parent: 15 pos: -38.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1877 +- uid: 1848 type: ReinforcedWindow components: - parent: 15 pos: -38.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1878 +- uid: 1849 type: ReinforcedWindow components: - parent: 15 pos: -39.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1879 +- uid: 1850 type: ReinforcedWindow components: - parent: 15 pos: -40.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1880 +- uid: 1851 type: ReinforcedWindow components: - parent: 15 pos: -40.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1881 +- uid: 1852 type: ReinforcedWindow components: - parent: 15 pos: -40.5,3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1882 +- uid: 1853 type: ReinforcedWindow components: - parent: 15 pos: -41.5,3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1883 +- uid: 1854 type: ReinforcedWindow components: - parent: 15 pos: -39.5,3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1884 +- uid: 1855 type: ReinforcedWindow components: - parent: 15 pos: -39.5,5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1885 +- uid: 1856 type: ReinforcedWindow components: - parent: 15 pos: -40.5,5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1886 +- uid: 1857 type: ReinforcedWindow components: - parent: 15 pos: -41.5,5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1887 +- uid: 1858 type: ReinforcedWindow components: - parent: 15 pos: -40.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1888 +- uid: 1859 type: ReinforcedWindow components: - parent: 15 pos: -40.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1889 +- uid: 1860 type: ReinforcedWindow components: - parent: 15 pos: -41.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1890 +- uid: 1861 type: ReinforcedWindow components: - parent: 15 pos: -39.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1891 +- uid: 1862 type: ReinforcedWindow components: - parent: 15 pos: -39.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1892 +- uid: 1863 type: ReinforcedWindow components: - parent: 15 pos: -40.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1893 +- uid: 1864 type: ReinforcedWindow components: - parent: 15 pos: -41.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1894 +- uid: 1865 type: ReinforcedWindow components: - parent: 15 pos: -40.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1895 +- uid: 1866 type: APC components: - parent: 15 pos: -33.5,7.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1897 +- uid: 1867 type: solid_wall components: - parent: 15 pos: -39.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1898 +- uid: 1868 type: ReinforcedWindow components: - parent: 15 pos: -37.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1899 +- uid: 1869 type: ReinforcedWindow components: - parent: 15 pos: -36.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1900 +- uid: 1870 type: ReinforcedWindow components: - parent: 15 pos: -35.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1901 +- uid: 1871 type: solid_wall components: - parent: 15 pos: -29.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1902 +- uid: 1872 type: solid_wall components: - parent: 15 pos: -28.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1903 +- uid: 1873 type: ReinforcedWindow components: - parent: 15 pos: -3.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1904 +- uid: 1874 type: ReinforcedWindow components: - parent: 15 pos: -2.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1905 +- uid: 1875 type: ReinforcedWindow components: - parent: 15 pos: -0.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1906 +- uid: 1876 type: ReinforcedWindow components: - parent: 15 pos: 0.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1907 +- uid: 1877 type: ReinforcedWindow components: - parent: 15 pos: -0.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1908 +- uid: 1878 type: ReinforcedWindow components: - parent: 15 pos: -3.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1909 +- uid: 1879 type: ReinforcedWindow components: - parent: 15 pos: -8.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1910 +- uid: 1880 type: ReinforcedWindow components: - parent: 15 pos: -7.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1911 +- uid: 1881 type: Window components: - parent: 15 pos: -10.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1912 +- uid: 1882 type: Window components: - parent: 15 pos: -7.5,18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1913 +- uid: 1883 type: ReinforcedWindow components: - parent: 15 pos: -2.5,31.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1914 +- uid: 1884 type: ReinforcedWindow components: - parent: 15 pos: -2.5,32.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1915 +- uid: 1885 type: ReinforcedWindow components: - parent: 15 pos: -3.5,29.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1916 +- uid: 1886 type: ReinforcedWindow components: - parent: 15 pos: -1.5,32.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1917 +- uid: 1887 type: ReinforcedWindow components: - parent: 15 pos: -1.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1918 +- uid: 1888 type: ReinforcedWindow components: - parent: 15 pos: -0.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1919 +- uid: 1889 type: ReinforcedWindow components: - parent: 15 pos: 0.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1920 +- uid: 1890 type: ReinforcedWindow components: - parent: 15 pos: 1.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1921 +- uid: 1891 type: ReinforcedWindow components: - parent: 15 pos: 2.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1922 +- uid: 1892 type: ReinforcedWindow components: - parent: 15 pos: 3.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1923 +- uid: 1893 type: ReinforcedWindow components: - parent: 15 pos: 4.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1924 +- uid: 1894 type: ReinforcedWindow components: - parent: 15 pos: 5.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1925 +- uid: 1895 type: ReinforcedWindow components: - parent: 15 pos: 6.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1926 +- uid: 1896 type: ReinforcedWindow components: - parent: 15 pos: 7.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1927 +- uid: 1897 type: ReinforcedWindow components: - parent: 15 pos: 8.5,33.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1928 +- uid: 1898 type: ReinforcedWindow components: - parent: 15 pos: 8.5,32.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1929 +- uid: 1899 type: ReinforcedWindow components: - parent: 15 pos: 9.5,31.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1930 +- uid: 1900 type: ReinforcedWindow components: - parent: 15 pos: 9.5,32.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1931 +- uid: 1901 type: ReinforcedWindow components: - parent: 15 pos: 10.5,29.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1932 +- uid: 1902 type: ReinforcedWindow components: - parent: 15 pos: 3.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1933 +- uid: 1903 type: Window components: - parent: 15 pos: -0.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1934 +- uid: 1904 type: Window components: - parent: 15 pos: -1.5,27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1935 +- uid: 1905 type: ReinforcedWindow components: - parent: 15 pos: 2.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1936 +- uid: 1906 type: ReinforcedWindow components: - parent: 15 pos: 3.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1937 +- uid: 1907 type: ReinforcedWindow components: - parent: 15 pos: 4.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1938 +- uid: 1908 type: ReinforcedWindow components: - parent: 15 pos: 5.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1939 +- uid: 1909 type: ReinforcedWindow components: - parent: 15 pos: 5.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1940 +- uid: 1910 type: Window components: - parent: 15 pos: 9.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1941 +- uid: 1911 type: Window components: - parent: 15 pos: 10.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1942 +- uid: 1912 type: Window components: - parent: 15 pos: 11.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1943 +- uid: 1913 type: ReinforcedWindow components: - parent: 15 pos: 51.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1944 +- uid: 1914 type: Wire components: - parent: 15 pos: 40.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1945 +- uid: 1915 type: Wire components: - parent: 15 pos: 41.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1946 +- uid: 1916 type: Wire components: - parent: 15 pos: 42.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1947 +- uid: 1917 type: Wire components: - parent: 15 pos: 43.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1948 +- uid: 1918 type: Wire components: - parent: 15 pos: 43.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1949 +- uid: 1919 type: Wire components: - parent: 15 pos: 43.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1950 +- uid: 1920 type: APC components: - parent: 15 pos: 43.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1951 +- uid: 1921 type: Wire components: - parent: 15 pos: 41.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1952 +- uid: 1922 type: Wire components: - parent: 15 pos: 41.5,3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1953 +- uid: 1923 type: Wire components: - parent: 15 pos: 41.5,2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1954 +- uid: 1924 type: Wire components: - parent: 15 pos: 41.5,1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1955 +- uid: 1925 type: APC components: - parent: 15 pos: 41.5,1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1956 +- uid: 1926 type: WaterTankFull components: - parent: 15 pos: -19.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1957 + - anchored: False + type: Collidable +- uid: 1927 type: WaterTankFull components: - parent: 15 pos: 35.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 1958 + - anchored: False + type: Collidable +- uid: 1928 type: Poweredlight components: - parent: 15 @@ -17811,7 +13889,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 1960 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1929 type: Poweredlight components: - parent: 15 @@ -17821,7 +13903,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 1963 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1930 type: Poweredlight components: - parent: 15 @@ -17832,7 +13918,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 1965 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1931 type: Poweredlight components: - parent: 15 @@ -17843,7 +13933,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 1967 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1932 type: PoweredSmallLight components: - parent: 15 @@ -17852,7 +13946,11 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 1968 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1933 type: PoweredSmallLight components: - parent: 15 @@ -17862,7 +13960,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 1970 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1934 type: PoweredSmallLight components: - parent: 15 @@ -17870,7 +13972,11 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 1972 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1935 type: Poweredlight components: - parent: 15 @@ -17881,7 +13987,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 1974 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1936 type: Poweredlight components: - parent: 15 @@ -17890,7 +14000,11 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 1976 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1937 type: Poweredlight components: - parent: 15 @@ -17898,119 +14012,69 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 1978 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1938 type: Wire components: - parent: 15 pos: 32.5,9.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1979 +- uid: 1939 type: Wire components: - parent: 15 pos: 31.5,9.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1980 +- uid: 1940 type: Wire components: - parent: 15 pos: 30.5,9.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1981 +- uid: 1941 type: Wire components: - parent: 15 pos: 29.5,9.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1982 +- uid: 1942 type: APC components: - parent: 15 pos: 29.5,9.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1983 +- uid: 1943 type: Wire components: - parent: 15 pos: 35.5,-1.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1984 +- uid: 1944 type: Wire components: - parent: 15 pos: 34.5,-1.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1985 +- uid: 1945 type: Wire components: - parent: 15 pos: 36.5,-1.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1986 +- uid: 1946 type: APC components: - parent: 15 pos: 36.5,-1.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 1987 +- uid: 1947 type: Poweredlight components: - parent: 15 @@ -18021,7 +14085,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 1989 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1948 type: Poweredlight components: - parent: 15 @@ -18031,7 +14099,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 1991 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1949 type: Poweredlight components: - parent: 15 @@ -18042,7 +14114,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 1993 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1950 type: Poweredlight components: - parent: 15 @@ -18053,7 +14129,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 1995 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1951 type: Poweredlight components: - parent: 15 @@ -18063,7 +14143,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 1997 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1952 type: Poweredlight components: - parent: 15 @@ -18074,7 +14158,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 1999 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1953 type: Poweredlight components: - parent: 15 @@ -18085,7 +14173,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2001 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1954 type: Poweredlight components: - parent: 15 @@ -18095,85 +14187,53 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2003 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1955 type: Wire components: - parent: 15 pos: 27.5,3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2004 +- uid: 1956 type: Wire components: - parent: 15 pos: 27.5,2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2005 +- uid: 1957 type: Wire components: - parent: 15 pos: 27.5,1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2006 +- uid: 1958 type: Wire components: - parent: 15 pos: 27.5,0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2007 +- uid: 1959 type: Wire components: - parent: 15 pos: 27.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2008 +- uid: 1960 type: APC components: - parent: 15 pos: 27.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2009 +- uid: 1961 type: PoweredSmallLight components: - parent: 15 @@ -18184,7 +14244,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2011 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1962 type: PoweredSmallLight components: - parent: 15 @@ -18195,7 +14259,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2013 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1963 type: PoweredSmallLight components: - parent: 15 @@ -18206,7 +14274,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2015 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1964 type: PoweredSmallLight components: - parent: 15 @@ -18217,7 +14289,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2017 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1965 type: PoweredSmallLight components: - parent: 15 @@ -18227,7 +14303,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2019 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1966 type: PoweredSmallLight components: - parent: 15 @@ -18237,7 +14317,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2021 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1967 type: PoweredSmallLight components: - parent: 15 @@ -18247,7 +14331,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2023 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1968 type: PoweredSmallLight components: - parent: 15 @@ -18258,21 +14346,25 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2025 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1969 type: solid_wall components: - parent: 15 pos: 45.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2026 +- uid: 1970 type: solid_wall components: - parent: 15 pos: 45.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2027 +- uid: 1971 type: PoweredSmallLight components: - parent: 15 @@ -18283,176 +14375,102 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2028 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1972 type: APC components: - parent: 15 pos: 20.5,-4.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2029 +- uid: 1973 type: Wire components: - parent: 15 pos: 23.5,-12.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2030 +- uid: 1974 type: Wire components: - parent: 15 pos: 23.5,-11.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2031 +- uid: 1975 type: APC components: - parent: 15 pos: 23.5,-11.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2032 +- uid: 1976 type: Wire components: - parent: 15 pos: 15.5,-16.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2033 +- uid: 1977 type: Wire components: - parent: 15 pos: 16.5,-16.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2034 +- uid: 1978 type: Wire components: - parent: 15 pos: 16.5,-17.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2035 +- uid: 1979 type: Wire components: - parent: 15 pos: 16.5,-18.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2036 +- uid: 1980 type: APC components: - parent: 15 pos: 16.5,-18.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2037 +- uid: 1981 type: Wire components: - parent: 15 pos: 8.5,-15.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2038 +- uid: 1982 type: Wire components: - parent: 15 pos: 8.5,-17.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2039 +- uid: 1983 type: Wire components: - parent: 15 pos: 8.5,-16.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2040 +- uid: 1984 type: APC components: - parent: 15 pos: 8.5,-17.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2042 +- uid: 1985 type: PoweredSmallLight components: - parent: 15 @@ -18463,7 +14481,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2043 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1986 type: PoweredSmallLight components: - parent: 15 @@ -18474,7 +14496,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2045 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1987 type: PoweredSmallLight components: - parent: 15 @@ -18485,7 +14511,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2047 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1988 type: Poweredlight components: - parent: 15 @@ -18496,7 +14526,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2050 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1989 type: Poweredlight components: - parent: 15 @@ -18505,7 +14539,11 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 2051 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1990 type: Poweredlight components: - parent: 15 @@ -18516,7 +14554,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2053 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1991 type: Poweredlight components: - parent: 15 @@ -18527,7 +14569,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2055 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1992 type: Poweredlight components: - parent: 15 @@ -18538,35 +14584,43 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2057 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1993 type: ChairOfficeLight components: - parent: 15 pos: 14.5,0.5 rot: 3.141592653589793 rad type: Transform -- uid: 2058 + - anchored: False + type: Collidable +- uid: 1994 type: ChairOfficeLight components: - parent: 15 pos: 10.5,-16.5 rot: 3.141592653589793 rad type: Transform -- uid: 2059 + - anchored: False + type: Collidable +- uid: 1995 type: solid_wall components: - parent: 15 pos: 47.5,5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2060 +- uid: 1996 type: solid_wall components: - parent: 15 pos: 51.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2061 +- uid: 1997 type: Poweredlight components: - parent: 15 @@ -18576,7 +14630,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2063 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1998 type: Poweredlight components: - parent: 15 @@ -18587,7 +14645,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2065 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 1999 type: Poweredlight components: - parent: 15 @@ -18598,7 +14660,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2067 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2000 type: Poweredlight components: - parent: 15 @@ -18608,67 +14674,41 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2069 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2001 type: Wire components: - parent: 15 pos: 6.5,-1.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2070 +- uid: 2002 type: Wire components: - parent: 15 pos: 6.5,-2.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2071 +- uid: 2003 type: Wire components: - parent: 15 pos: 6.5,-3.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2072 +- uid: 2004 type: Wire components: - parent: 15 pos: 5.5,-3.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2073 +- uid: 2005 type: APC components: - parent: 15 pos: 5.5,-3.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2074 +- uid: 2006 type: Poweredlight components: - parent: 15 @@ -18678,7 +14718,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2076 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2007 type: Poweredlight components: - parent: 15 @@ -18689,46 +14733,32 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2078 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2008 type: Wire components: - parent: 15 pos: 17.5,1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2079 +- uid: 2009 type: Wire components: - parent: 15 pos: 17.5,2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2080 +- uid: 2010 type: APC components: - parent: 15 pos: 17.5,2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2081 +- uid: 2011 type: Poweredlight components: - parent: 15 @@ -18739,7 +14769,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2083 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2012 type: Poweredlight components: - parent: 15 @@ -18748,7 +14782,11 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 2086 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2013 type: Poweredlight components: - parent: 15 @@ -18758,7 +14796,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2087 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2014 type: Poweredlight components: - parent: 15 @@ -18769,7 +14811,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2089 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2015 type: Poweredlight components: - parent: 15 @@ -18780,7 +14826,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2091 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2016 type: Poweredlight components: - parent: 15 @@ -18791,124 +14841,74 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2093 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2017 type: Wire components: - parent: 15 pos: 14.5,11.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2094 +- uid: 2018 type: Wire components: - parent: 15 pos: 14.5,12.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2095 +- uid: 2019 type: Wire components: - parent: 15 pos: 14.5,13.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2096 +- uid: 2020 type: APC components: - parent: 15 pos: 14.5,13.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2097 +- uid: 2021 type: Wire components: - parent: 15 pos: 8.5,10.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2098 +- uid: 2022 type: Wire components: - parent: 15 pos: 7.5,10.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2099 +- uid: 2023 type: Wire components: - parent: 15 pos: 6.5,10.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2100 +- uid: 2024 type: Wire components: - parent: 15 pos: 5.5,10.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2101 +- uid: 2025 type: APC components: - parent: 15 pos: 5.5,10.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2103 +- uid: 2026 type: Poweredlight components: - parent: 15 @@ -18916,7 +14916,11 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 2104 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2027 type: Poweredlight components: - parent: 15 @@ -18926,7 +14930,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2106 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2028 type: Poweredlight components: - parent: 15 @@ -18937,7 +14945,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2108 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2029 type: Poweredlight components: - parent: 15 @@ -18947,7 +14959,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2110 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2030 type: Poweredlight components: - parent: 15 @@ -18956,7 +14972,11 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 2113 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2031 type: Poweredlight components: - parent: 15 @@ -18967,7 +14987,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2114 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2032 type: Poweredlight components: - parent: 15 @@ -18978,7 +15002,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2116 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2033 type: Poweredlight components: - parent: 15 @@ -18989,7 +15017,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2119 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2034 type: Poweredlight components: - parent: 15 @@ -19000,7 +15032,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2120 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2035 type: Poweredlight components: - parent: 15 @@ -19010,7 +15046,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2122 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2036 type: PoweredSmallLight components: - parent: 15 @@ -19021,7 +15061,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2124 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2037 type: PoweredSmallLight components: - parent: 15 @@ -19031,7 +15075,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2126 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2038 type: PoweredSmallLight components: - parent: 15 @@ -19039,199 +15087,119 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 2128 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2039 type: Wire components: - parent: 15 pos: 9.5,20.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2129 +- uid: 2040 type: Wire components: - parent: 15 pos: 8.5,20.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2130 +- uid: 2041 type: Wire components: - parent: 15 pos: 8.5,19.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2131 +- uid: 2042 type: Wire components: - parent: 15 pos: 8.5,18.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2132 +- uid: 2043 type: solid_wall components: - parent: 15 pos: 7.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2133 +- uid: 2044 type: solid_wall components: - parent: 15 pos: 8.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2134 +- uid: 2045 type: Wire components: - parent: 15 pos: 9.5,16.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2135 +- uid: 2046 type: Wire components: - parent: 15 pos: 9.5,15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2136 +- uid: 2047 type: APC components: - parent: 15 pos: 9.5,15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2137 +- uid: 2048 type: Wire components: - parent: 15 pos: -2.5,19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2138 +- uid: 2049 type: Wire components: - parent: 15 pos: -2.5,18.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2139 +- uid: 2050 type: Wire components: - parent: 15 pos: -2.5,17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2140 +- uid: 2051 type: Wire components: - parent: 15 pos: -0.5,17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2141 +- uid: 2052 type: APC components: - parent: 15 pos: -2.5,19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2142 +- uid: 2053 type: Wire components: - parent: 15 pos: 7.5,26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2143 +- uid: 2054 type: Wire components: - parent: 15 pos: 7.5,27.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2145 +- uid: 2055 type: Poweredlight components: - parent: 15 @@ -19242,7 +15210,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2146 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2056 type: Poweredlight components: - parent: 15 @@ -19253,7 +15225,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2148 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2057 type: Poweredlight components: - parent: 15 @@ -19264,7 +15240,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2150 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2058 type: Poweredlight components: - parent: 15 @@ -19275,7 +15255,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2152 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2059 type: Poweredlight components: - parent: 15 @@ -19285,7 +15269,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2154 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2060 type: Poweredlight components: - parent: 15 @@ -19296,7 +15284,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2156 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2061 type: Poweredlight components: - parent: 15 @@ -19307,7 +15299,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2158 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2062 type: Poweredlight components: - parent: 15 @@ -19318,7 +15314,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2160 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2063 type: Poweredlight components: - parent: 15 @@ -19329,7 +15329,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2162 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2064 type: Poweredlight components: - parent: 15 @@ -19337,7 +15341,11 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 2164 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2065 type: Poweredlight components: - parent: 15 @@ -19346,7 +15354,11 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 2167 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2066 type: Poweredlight components: - parent: 15 @@ -19356,7 +15368,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2168 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2067 type: PoweredSmallLight components: - parent: 15 @@ -19367,14 +15383,18 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2171 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2068 type: AirlockMaintCommonLocked components: - parent: 15 pos: 1.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2172 +- uid: 2069 type: PoweredSmallLight components: - parent: 15 @@ -19385,73 +15405,53 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2174 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2070 type: Wire components: - parent: 15 pos: -9.5,20.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2175 +- uid: 2071 type: Wire components: - parent: 15 pos: -10.5,20.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2176 +- uid: 2072 type: Wire components: - parent: 15 pos: -10.5,21.5 rot: 1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2177 +- uid: 2073 type: reinforced_wall components: - parent: 15 pos: -10.5,21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2178 +- uid: 2074 type: reinforced_wall components: - parent: 15 pos: -10.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2179 +- uid: 2075 type: APC components: - parent: 15 pos: -10.5,21.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2180 +- uid: 2076 type: Poweredlight components: - parent: 15 @@ -19462,7 +15462,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2182 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2077 type: Poweredlight components: - parent: 15 @@ -19470,7 +15474,11 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 2184 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2078 type: Poweredlight components: - parent: 15 @@ -19481,7 +15489,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2186 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2079 type: Poweredlight components: - parent: 15 @@ -19492,7 +15504,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2188 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2080 type: Poweredlight components: - parent: 15 @@ -19502,7 +15518,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2190 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2081 type: Poweredlight components: - parent: 15 @@ -19510,7 +15530,11 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 2192 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2082 type: Poweredlight components: - parent: 15 @@ -19521,7 +15545,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2194 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2083 type: PoweredSmallLight components: - parent: 15 @@ -19532,7 +15560,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2196 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2084 type: PoweredSmallLight components: - parent: 15 @@ -19541,7 +15573,11 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 2198 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2085 type: Poweredlight components: - parent: 15 @@ -19552,7 +15588,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2200 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2086 type: Poweredlight components: - parent: 15 @@ -19562,7 +15602,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2202 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2087 type: Poweredlight components: - parent: 15 @@ -19572,7 +15616,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2204 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2088 type: Poweredlight components: - parent: 15 @@ -19582,7 +15630,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2206 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2089 type: Poweredlight components: - parent: 15 @@ -19592,7 +15644,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2208 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2090 type: Poweredlight components: - parent: 15 @@ -19602,7 +15658,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2211 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2091 type: Poweredlight components: - parent: 15 @@ -19613,7 +15673,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2212 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2092 type: Poweredlight components: - parent: 15 @@ -19624,54 +15688,46 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2214 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2093 type: Table components: - parent: 15 pos: 29.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2215 +- uid: 2094 type: Table components: - parent: 15 pos: 25.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2216 +- uid: 2095 type: VendingMachineEngivend components: - parent: 15 pos: 31.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2217 +- uid: 2096 type: Wire components: - parent: 15 pos: -6.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2218 +- uid: 2097 type: APC components: - parent: 15 pos: -6.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2219 +- uid: 2098 type: Poweredlight components: - parent: 15 @@ -19682,7 +15738,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2221 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2099 type: Poweredlight components: - parent: 15 @@ -19693,7 +15753,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2223 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2100 type: Poweredlight components: - parent: 15 @@ -19704,7 +15768,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2225 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2101 type: Poweredlight components: - parent: 15 @@ -19713,7 +15781,11 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 2227 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2102 type: PoweredSmallLight components: - parent: 15 @@ -19724,7 +15796,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2229 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2103 type: PoweredSmallLight components: - parent: 15 @@ -19735,7 +15811,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2231 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2104 type: PoweredSmallLight components: - parent: 15 @@ -19746,7 +15826,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2234 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2105 type: PoweredSmallLight components: - parent: 15 @@ -19757,7 +15841,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2235 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2106 type: PoweredSmallLight components: - parent: 15 @@ -19768,7 +15856,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2237 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2107 type: PoweredSmallLight components: - parent: 15 @@ -19779,164 +15871,110 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2239 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2108 type: Wire components: - parent: 15 pos: -29.5,8.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2240 +- uid: 2109 type: Wire components: - parent: 15 pos: -30.5,8.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2241 +- uid: 2110 type: Wire components: - parent: 15 pos: -28.5,-2.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2242 +- uid: 2111 type: APC components: - parent: 15 pos: -28.5,-3.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2244 +- uid: 2112 type: Chair components: - parent: 15 pos: -8.5,20.5 type: Transform -- uid: 2245 + - anchored: False + type: Collidable +- uid: 2113 type: APC components: - parent: 15 pos: -33.5,2.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2246 +- uid: 2114 type: solid_wall components: - parent: 15 pos: -33.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2247 +- uid: 2115 type: APC components: - parent: 15 pos: -12.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2248 +- uid: 2116 type: APC components: - parent: 15 pos: -1.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2249 +- uid: 2117 type: APC components: - parent: 15 pos: -7.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2250 +- uid: 2118 type: APC components: - parent: 15 pos: -12.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2251 +- uid: 2119 type: APC components: - parent: 15 pos: 0.5,-26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2252 +- uid: 2120 type: Table components: - parent: 15 pos: -29.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2253 +- uid: 2121 type: Table components: - parent: 15 pos: -29.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2254 +- uid: 2122 type: Poweredlight components: - parent: 15 @@ -19945,7 +15983,11 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 2256 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2123 type: Poweredlight components: - parent: 15 @@ -19956,35 +15998,39 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2258 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2124 type: Table components: - parent: 15 pos: 18.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2259 +- uid: 2125 type: Table components: - parent: 15 pos: 15.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2260 +- uid: 2126 type: VendingMachineSnack components: - parent: 15 pos: -22.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2261 +- uid: 2127 type: VendingMachineCola components: - parent: 15 pos: -34.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2264 +- uid: 2128 type: Poweredlight components: - parent: 15 @@ -19995,18 +16041,26 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2265 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2129 type: LockerToolFilled components: - parent: 15 pos: -27.5,11.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2266 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2130 type: PoweredSmallLight components: - parent: 15 @@ -20016,7 +16070,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2268 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2131 type: PoweredSmallLight components: - parent: 15 @@ -20026,7 +16084,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2270 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2132 type: PoweredSmallLight components: - parent: 15 @@ -20037,21 +16099,25 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2272 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2133 type: Table components: - parent: 15 pos: 10.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2273 +- uid: 2134 type: Table components: - parent: 15 pos: 10.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2274 +- uid: 2135 type: PoweredSmallLight components: - parent: 15 @@ -20061,7 +16127,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2276 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2136 type: Poweredlight components: - parent: 15 @@ -20071,25 +16141,35 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2278 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2137 type: Welder components: - parent: 15 pos: -29.434454,8.191761 rot: -1.5707963267948966 rad type: Transform -- uid: 2279 + - anchored: False + type: Collidable +- uid: 2138 type: LockerWeldingSupplies components: - parent: 15 pos: 38.5,9.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2280 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2139 type: Poweredlight components: - parent: 15 @@ -20100,7 +16180,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2282 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2140 type: Poweredlight components: - parent: 15 @@ -20111,7 +16195,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2284 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2141 type: Poweredlight components: - parent: 15 @@ -20122,7 +16210,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2286 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2142 type: Poweredlight components: - parent: 15 @@ -20133,7 +16225,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2288 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2143 type: Poweredlight components: - parent: 15 @@ -20143,7 +16239,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2290 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2144 type: Poweredlight components: - parent: 15 @@ -20154,7 +16254,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2292 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2145 type: Poweredlight components: - parent: 15 @@ -20164,7 +16268,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2294 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2146 type: Poweredlight components: - parent: 15 @@ -20173,7 +16281,11 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 2296 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2147 type: PoweredSmallLight components: - parent: 15 @@ -20184,7 +16296,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2298 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2148 type: PoweredSmallLight components: - parent: 15 @@ -20195,7 +16311,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2300 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2149 type: Food4NoRaisins components: - parent: 15 @@ -20204,14 +16324,18 @@ entities: type: Transform - fillingSteps: 0 type: Solution -- uid: 2301 + - anchored: False + type: Collidable +- uid: 2150 type: Pen components: - parent: 15 pos: 9.652517,18.48974 rot: 3.141592653589793 rad type: Transform -- uid: 2302 + - anchored: False + type: Collidable +- uid: 2151 type: PoweredSmallLight components: - parent: 15 @@ -20221,7 +16345,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2310 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2152 type: PoweredSmallLight components: - parent: 15 @@ -20232,21 +16360,25 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2312 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2153 type: Table components: - parent: 15 pos: 7.5,28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2313 +- uid: 2154 type: Table components: - parent: 15 pos: 8.5,28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2314 +- uid: 2155 type: PoweredSmallLight components: - parent: 15 @@ -20257,7 +16389,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2316 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2156 type: Poweredlight components: - parent: 15 @@ -20268,7 +16404,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2318 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2157 type: Poweredlight components: - parent: 15 @@ -20278,7 +16418,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2320 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2158 type: Poweredlight components: - parent: 15 @@ -20289,7 +16433,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2322 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2159 type: Poweredlight components: - parent: 15 @@ -20300,7 +16448,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2324 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2160 type: Poweredlight components: - parent: 15 @@ -20311,169 +16463,191 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2325 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2161 type: solid_wall components: - parent: 15 pos: -38.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2326 +- uid: 2162 type: solid_wall components: - parent: 15 pos: -34.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2327 +- uid: 2163 type: SpawnPointStationEngineer components: - parent: 15 pos: 33.5,4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2328 +- uid: 2164 type: SpawnPointSecurityOfficer components: - parent: 15 pos: -7.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2329 +- uid: 2165 type: Table components: - parent: 15 pos: 8.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2330 +- uid: 2166 type: Table components: - parent: 15 pos: 8.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2331 +- uid: 2167 type: Table components: - parent: 15 pos: 8.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2332 +- uid: 2168 type: Table components: - parent: 15 pos: 7.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2333 +- uid: 2169 type: Table components: - parent: 15 pos: 6.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2334 +- uid: 2170 type: ChairOfficeLight components: - parent: 15 pos: 6.5,-4.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2335 + - anchored: False + type: Collidable +- uid: 2171 type: ComputerMedicalRecords components: - parent: 15 pos: 6.5,-5.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2336 +- uid: 2172 type: chem_dispenser components: - parent: 15 pos: 14.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2337 + - containers: + ReagentDispenser-reagentContainerContainer: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2173 type: Table components: - parent: 15 pos: 14.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2338 +- uid: 2174 type: Table components: - parent: 15 pos: 18.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2339 +- uid: 2175 type: Table components: - parent: 15 pos: 18.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2340 +- uid: 2176 type: chem_master components: - parent: 15 pos: 15.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2341 + - containers: + ChemMaster-reagentContainerContainer: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2177 type: Table components: - parent: 15 pos: 14.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2342 +- uid: 2178 type: Table components: - parent: 15 pos: 15.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2343 +- uid: 2179 type: Table components: - parent: 15 pos: 15.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2344 +- uid: 2180 type: LockerHeadOfSecurityFilled components: - parent: 15 pos: -9.5,21.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2345 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2181 type: LockerChemistry components: - parent: 15 pos: 18.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2346 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2182 type: Table components: - parent: 15 pos: 13.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2347 +- uid: 2183 type: WarpPoint components: - parent: 15 @@ -20482,7 +16656,7 @@ entities: type: Transform - location: eva type: WarpPoint -- uid: 2348 +- uid: 2184 type: WarpPoint components: - parent: 15 @@ -20491,7 +16665,7 @@ entities: type: Transform - location: cap type: WarpPoint -- uid: 2349 +- uid: 2185 type: WarpPoint components: - parent: 15 @@ -20500,7 +16674,7 @@ entities: type: Transform - location: chem type: WarpPoint -- uid: 2350 +- uid: 2186 type: WarpPoint components: - parent: 15 @@ -20509,7 +16683,7 @@ entities: type: Transform - location: hop type: WarpPoint -- uid: 2351 +- uid: 2187 type: WarpPoint components: - parent: 15 @@ -20518,178 +16692,202 @@ entities: type: Transform - location: grav type: WarpPoint -- uid: 2352 +- uid: 2188 type: LockerMedical components: - parent: 15 pos: 21.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2353 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2189 type: LockerMedical components: - parent: 15 pos: 22.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2354 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2190 type: VendingMachineMedical components: - parent: 15 pos: 19.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2355 +- uid: 2191 type: VendingMachineMedical components: - parent: 15 pos: 6.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2356 +- uid: 2192 type: Table components: - parent: 15 pos: 21.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2357 +- uid: 2193 type: Table components: - parent: 15 pos: 22.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2358 +- uid: 2194 type: Table components: - parent: 15 pos: 23.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2359 +- uid: 2195 type: CrateMedical components: - parent: 15 pos: 24.5,-4.5 rot: -1.5707963267948966 rad type: Transform + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2360 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2196 type: Table components: - parent: 15 pos: 6.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2361 +- uid: 2197 type: Table components: - parent: 15 pos: 6.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2362 +- uid: 2198 type: Table components: - parent: 15 pos: 6.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2363 +- uid: 2199 type: Table components: - parent: 15 pos: 6.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2364 +- uid: 2200 type: Table components: - parent: 15 pos: 10.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2365 +- uid: 2201 type: Table components: - parent: 15 pos: 9.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2366 +- uid: 2202 type: Beaker components: - parent: 15 pos: 15.07514,-0.38339257 rot: 1.5707963267948966 rad type: Transform -- uid: 2367 + - anchored: False + type: Collidable +- uid: 2203 type: MedicalScanner components: - parent: 15 pos: 16.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2368 + - containers: + MedicalScanner-bodyContainer: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2204 type: MedicalScanner components: - parent: 15 pos: 16.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2369 + - containers: + MedicalScanner-bodyContainer: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2205 type: LowWall components: - parent: 15 pos: 15.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2370 +- uid: 2206 type: LowWall components: - parent: 15 pos: 16.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2371 +- uid: 2207 type: LowWall components: - parent: 15 pos: 17.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2372 +- uid: 2208 type: Window components: - parent: 15 pos: 15.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2373 +- uid: 2209 type: Window components: - parent: 15 pos: 16.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2374 +- uid: 2210 type: Window components: - parent: 15 pos: 17.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2375 +- uid: 2211 type: Poweredlight components: - parent: 15 @@ -20700,7 +16898,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2377 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2212 type: Poweredlight components: - parent: 15 @@ -20710,7 +16912,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2379 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2213 type: Poweredlight components: - parent: 15 @@ -20721,7 +16927,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2381 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2214 type: Poweredlight components: - parent: 15 @@ -20732,101 +16942,143 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2383 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2215 type: Medkit components: - parent: 15 pos: 6.5537567,-7.609968 rot: 1.5707963267948966 rad type: Transform -- uid: 2384 + - anchored: False + type: Collidable + - containers: + storagebase: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2216 type: Medkit components: - parent: 15 pos: 6.5693817,-8.359968 rot: 1.5707963267948966 rad type: Transform -- uid: 2385 + - anchored: False + type: Collidable + - containers: + storagebase: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2217 type: Medkit components: - parent: 15 pos: 6.5225067,-9.141218 rot: 1.5707963267948966 rad type: Transform -- uid: 2386 + - anchored: False + type: Collidable + - containers: + storagebase: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2218 type: Medkit components: - parent: 15 pos: 6.5068817,-9.984968 rot: 1.5707963267948966 rad type: Transform -- uid: 2387 + - anchored: False + type: Collidable + - containers: + storagebase: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2219 type: DisposalUnit components: - parent: 15 pos: 18.5,-0.5 type: Transform - - Anchored: True - type: Physics -- uid: 2388 + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2220 type: DisposalTrunk components: - parent: 15 pos: 18.5,-0.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 2389 + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2221 type: LargeBeaker components: - parent: 15 pos: 14.528265,-0.44589257 rot: 1.5707963267948966 rad type: Transform -- uid: 2390 + - anchored: False + type: Collidable +- uid: 2222 type: Beaker components: - parent: 15 pos: 15.48139,-0.43026757 rot: 1.5707963267948966 rad type: Transform -- uid: 2391 + - anchored: False + type: Collidable +- uid: 2223 type: ComputerMedicalRecords components: - parent: 15 pos: 24.5,-15.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2392 +- uid: 2224 type: Table components: - parent: 15 pos: 23.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2393 +- uid: 2225 type: Table components: - parent: 15 pos: 23.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2394 +- uid: 2226 type: Table components: - parent: 15 pos: 23.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2395 +- uid: 2227 type: ChairOfficeLight components: - parent: 15 pos: 24.5,-14.5 rot: 3.141592653589793 rad type: Transform -- uid: 2396 + - anchored: False + type: Collidable +- uid: 2228 type: Poweredlight components: - parent: 15 @@ -20837,7 +17089,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2398 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2229 type: WarpPoint components: - parent: 15 @@ -20846,7 +17102,7 @@ entities: type: Transform - location: dorms type: WarpPoint -- uid: 2399 +- uid: 2230 type: WarpPoint components: - parent: 15 @@ -20855,147 +17111,147 @@ entities: type: Transform - location: escape type: WarpPoint -- uid: 2401 +- uid: 2231 type: SpawnPointChef components: - parent: 15 pos: -12.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2402 +- uid: 2232 type: SpawnPointLatejoin components: - parent: 15 pos: -36.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2403 +- uid: 2233 type: SpawnPointAssistant components: - parent: 15 pos: -29.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2404 +- uid: 2234 type: SpawnPointAssistant components: - parent: 15 pos: -23.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2405 +- uid: 2235 type: Table components: - parent: 15 pos: -4.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2406 +- uid: 2236 type: Table components: - parent: 15 pos: -4.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2407 +- uid: 2237 type: LowWall components: - parent: 15 pos: -10.5,-29.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2408 +- uid: 2238 type: LowWall components: - parent: 15 pos: -10.5,-30.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2409 +- uid: 2239 type: LowWall components: - parent: 15 pos: -9.5,-30.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2410 +- uid: 2240 type: LowWall components: - parent: 15 pos: -6.5,-29.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2411 +- uid: 2241 type: LowWall components: - parent: 15 pos: -7.5,-30.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2412 +- uid: 2242 type: LowWall components: - parent: 15 pos: -6.5,-30.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2413 +- uid: 2243 type: LowWall components: - parent: 15 pos: -8.5,-30.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2414 +- uid: 2244 type: ReinforcedWindow components: - parent: 15 pos: -10.5,-29.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2415 +- uid: 2245 type: ReinforcedWindow components: - parent: 15 pos: -10.5,-30.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2416 +- uid: 2246 type: ReinforcedWindow components: - parent: 15 pos: -9.5,-30.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2417 +- uid: 2247 type: ReinforcedWindow components: - parent: 15 pos: -8.5,-30.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2418 +- uid: 2248 type: ReinforcedWindow components: - parent: 15 pos: -7.5,-30.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2419 +- uid: 2249 type: ReinforcedWindow components: - parent: 15 pos: -6.5,-30.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2420 +- uid: 2250 type: ReinforcedWindow components: - parent: 15 pos: -6.5,-29.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2421 +- uid: 2251 type: Poweredlight components: - parent: 15 @@ -21006,7 +17262,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2423 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2252 type: Poweredlight components: - parent: 15 @@ -21016,7 +17276,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2425 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2253 type: Poweredlight components: - parent: 15 @@ -21027,7 +17291,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2428 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2254 type: Poweredlight components: - parent: 15 @@ -21038,7 +17306,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2429 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2255 type: Poweredlight components: - parent: 15 @@ -21049,7 +17321,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2431 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2256 type: Poweredlight components: - parent: 15 @@ -21060,7 +17336,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2433 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2257 type: Poweredlight components: - parent: 15 @@ -21071,7 +17351,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2435 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2258 type: PoweredSmallLight components: - parent: 15 @@ -21081,7 +17365,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2437 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2259 type: ResearchAndDevelopmentServer components: - parent: 15 @@ -21089,7 +17377,7 @@ entities: type: Transform - points: 136000 type: ResearchServer -- uid: 2439 +- uid: 2260 type: Poweredlight components: - parent: 15 @@ -21097,7 +17385,11 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 2440 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2261 type: Poweredlight components: - parent: 15 @@ -21107,7 +17399,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2442 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2262 type: Poweredlight components: - parent: 15 @@ -21118,7 +17414,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2444 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2263 type: Poweredlight components: - parent: 15 @@ -21129,7 +17429,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2446 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2264 type: Poweredlight components: - parent: 15 @@ -21140,39 +17444,31 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2448 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2265 type: Wire components: - parent: 15 pos: -17.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2449 +- uid: 2266 type: APC components: - parent: 15 pos: -18.5,-19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2450 +- uid: 2267 type: ComputerResearchAndDevelopment components: - parent: 15 pos: -5.5,-15.5 type: Transform -- uid: 2452 +- uid: 2268 type: PoweredSmallLight components: - parent: 15 @@ -21183,147 +17479,187 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2453 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2269 type: Table components: - parent: 15 pos: -0.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2454 +- uid: 2270 type: Table components: - parent: 15 pos: -1.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2455 +- uid: 2271 type: Table components: - parent: 15 pos: -2.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2456 +- uid: 2272 type: Table components: - parent: 15 pos: 0.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2457 +- uid: 2273 type: Table components: - parent: 15 pos: 0.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2458 +- uid: 2274 type: BaseResearchAndDevelopmentPointSource components: - parent: 15 pos: -5.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2459 +- uid: 2275 type: ChairOfficeLight components: - parent: 15 pos: -0.5,-14.5 type: Transform -- uid: 2460 + - anchored: False + type: Collidable +- uid: 2276 type: ChairOfficeLight components: - parent: 15 pos: -5.5,-23.5 type: Transform -- uid: 2461 + - anchored: False + type: Collidable +- uid: 2277 type: VendingMachineCoffee components: - parent: 15 pos: -7.5,-17.5 type: Transform -- uid: 2462 +- uid: 2278 type: Table components: - parent: 15 pos: -8.5,-17.5 type: Transform -- uid: 2463 +- uid: 2279 type: ChairOfficeLight components: - parent: 15 pos: -9.5,-17.5 type: Transform -- uid: 2464 + - anchored: False + type: Collidable +- uid: 2280 type: ChairOfficeLight components: - parent: 15 pos: -8.5,-18.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2465 + - anchored: False + type: Collidable +- uid: 2281 type: Autolathe components: - parent: 15 pos: -5.5,-12.5 type: Transform -- uid: 2466 + - recipes: + - Brutepack + - Ointment + - LightTube + - LightBulb + - MetalStack + - GlassStack + - Wirecutter + - Screwdriver + - Welder + - Wrench + - Crowbar + - Multitool + type: LatheDatabase +- uid: 2282 type: Protolathe components: - parent: 15 pos: -3.5,-12.5 type: Transform -- uid: 2467 + - protolatherecipes: + - Brutepack + - Ointment + - LightTube + - LightBulb + - MetalStack + - GlassStack + - Wirecutter + - Screwdriver + - Welder + - Wrench + - Crowbar + - Multitool + type: ProtolatheDatabase +- uid: 2283 type: Table components: - parent: 15 pos: -2.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2468 +- uid: 2284 type: Table components: - parent: 15 pos: -1.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2469 +- uid: 2285 type: Table components: - parent: 15 pos: -0.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2470 +- uid: 2286 type: SpawnPointStationEngineer components: - parent: 15 pos: 41.5,4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2471 +- uid: 2287 type: SpawnPointStationEngineer components: - parent: 15 pos: 33.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2472 +- uid: 2288 type: SpawnPointSecurityOfficer components: - parent: 15 pos: -2.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2473 +- uid: 2289 type: SpawnPointSecurityOfficer components: - parent: 15 pos: -13.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2474 +- uid: 2290 type: Poweredlight components: - parent: 15 @@ -21334,280 +17670,320 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2476 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2291 type: Table components: - parent: 15 pos: -2.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2477 +- uid: 2292 type: Table components: - parent: 15 pos: -7.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2478 +- uid: 2293 type: Table components: - parent: 15 pos: -6.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2479 +- uid: 2294 type: Table components: - parent: 15 pos: -5.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2480 +- uid: 2295 type: Table components: - parent: 15 pos: -4.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2481 +- uid: 2296 type: Table components: - parent: 15 pos: -3.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2482 +- uid: 2297 type: Table components: - parent: 15 pos: -2.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2483 +- uid: 2298 type: Table components: - parent: 15 pos: 39.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2484 +- uid: 2299 type: SpawnPointAssistant components: - parent: 15 pos: -27.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2485 +- uid: 2300 type: SpawnPointSecurityOfficer components: - parent: 15 pos: -12.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2486 +- uid: 2301 type: SpawnPointAssistant components: - parent: 15 pos: -27.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2487 +- uid: 2302 type: SpawnPointStationEngineer components: - parent: 15 pos: 33.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2488 +- uid: 2303 type: StoolBar components: - parent: 15 pos: -7.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2489 + - anchored: False + type: Collidable +- uid: 2304 type: StoolBar components: - parent: 15 pos: -6.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2490 + - anchored: False + type: Collidable +- uid: 2305 type: StoolBar components: - parent: 15 pos: -5.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2491 + - anchored: False + type: Collidable +- uid: 2306 type: StoolBar components: - parent: 15 pos: -4.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2492 + - anchored: False + type: Collidable +- uid: 2307 type: StoolBar components: - parent: 15 pos: -3.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2493 + - anchored: False + type: Collidable +- uid: 2308 type: StoolBar components: - parent: 15 pos: -2.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2494 + - anchored: False + type: Collidable +- uid: 2309 type: Fork components: - parent: 15 pos: -7.6538,0.49939823 type: Transform -- uid: 2495 + - anchored: False + type: Collidable +- uid: 2310 type: Arcade components: - parent: 15 pos: -1.5,-4.5 type: Transform -- uid: 2496 +- uid: 2311 type: TableWood components: - parent: 15 pos: -7.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2497 +- uid: 2312 type: TableWood components: - parent: 15 pos: -6.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2498 +- uid: 2313 type: TableWood components: - parent: 15 pos: -0.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2499 +- uid: 2314 type: TableWood components: - parent: 15 pos: -3.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2500 +- uid: 2315 type: ChairWood components: - parent: 15 pos: -3.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2501 + - anchored: False + type: Collidable +- uid: 2316 type: ChairWood components: - parent: 15 pos: -3.5,-0.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2502 + - anchored: False + type: Collidable +- uid: 2317 type: ChairWood components: - parent: 15 pos: -6.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2503 + - anchored: False + type: Collidable +- uid: 2318 type: ChairWood components: - parent: 15 pos: -7.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2504 + - anchored: False + type: Collidable +- uid: 2319 type: ChairWood components: - parent: 15 pos: -7.5,-0.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2505 + - anchored: False + type: Collidable +- uid: 2320 type: ChairWood components: - parent: 15 pos: -6.5,-0.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2506 + - anchored: False + type: Collidable +- uid: 2321 type: ChairWood components: - parent: 15 pos: -0.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2507 + - anchored: False + type: Collidable +- uid: 2322 type: ChairWood components: - parent: 15 pos: -0.5,-0.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2508 + - anchored: False + type: Collidable +- uid: 2323 type: BarSign components: - parent: 15 pos: 1,2.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2509 +- uid: 2324 type: Spoon components: - parent: 15 pos: -6.419425,0.43689823 type: Transform -- uid: 2510 + - anchored: False + type: Collidable +- uid: 2325 type: VendingMachineCigs components: - parent: 15 pos: 0.5,-4.5 type: Transform -- uid: 2511 +- uid: 2326 type: VendingMachineSnack components: - parent: 15 pos: -0.5,-4.5 type: Transform -- uid: 2512 +- uid: 2327 type: Chair components: - parent: 15 pos: 22.5,-14.5 type: Transform -- uid: 2513 + - anchored: False + type: Collidable +- uid: 2328 type: Stool components: - parent: 15 pos: -1.5,-3.5 type: Transform -- uid: 2514 + - anchored: False + type: Collidable +- uid: 2329 type: Table components: - parent: 15 pos: -15.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2515 +- uid: 2330 type: ComputerComms components: - parent: 15 pos: 3.5,32.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2516 +- uid: 2331 type: WarpPoint components: - parent: 15 @@ -21616,7 +17992,7 @@ entities: type: Transform - location: bar type: WarpPoint -- uid: 2517 +- uid: 2332 type: WarpPoint components: - parent: 15 @@ -21625,7 +18001,7 @@ entities: type: Transform - location: sci type: WarpPoint -- uid: 2518 +- uid: 2333 type: WarpPoint components: - parent: 15 @@ -21634,7 +18010,7 @@ entities: type: Transform - location: med type: WarpPoint -- uid: 2519 +- uid: 2334 type: WarpPoint components: - parent: 15 @@ -21643,7 +18019,7 @@ entities: type: Transform - location: cargo type: WarpPoint -- uid: 2520 +- uid: 2335 type: WarpPoint components: - parent: 15 @@ -21652,69 +18028,75 @@ entities: type: Transform - location: eng type: WarpPoint -- uid: 2521 +- uid: 2336 type: VendingMachineCola components: - parent: 15 pos: 1.5,21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2522 +- uid: 2337 type: VendingMachineCoffee components: - parent: 15 pos: 0.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2523 +- uid: 2338 type: VendingMachineCigs components: - parent: 15 pos: 6.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2524 +- uid: 2339 type: TableWood components: - parent: 15 pos: 8.5,25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2525 +- uid: 2340 type: TableWood components: - parent: 15 pos: 8.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2526 +- uid: 2341 type: ChairOfficeDark components: - parent: 15 pos: 3.5,31.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2527 + - anchored: False + type: Collidable +- uid: 2342 type: ComputerComms components: - parent: 15 pos: 9.5,23.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2528 +- uid: 2343 type: ChairOfficeDark components: - parent: 15 pos: 9.5,25.5 rot: 3.141592653589793 rad type: Transform -- uid: 2529 + - anchored: False + type: Collidable +- uid: 2344 type: ChairWood components: - parent: 15 pos: 7.5,25.5 type: Transform -- uid: 2530 + - anchored: False + type: Collidable +- uid: 2345 type: WarpPoint components: - parent: 15 @@ -21723,7 +18105,7 @@ entities: type: Transform - location: sec type: WarpPoint -- uid: 2531 +- uid: 2346 type: WarpPoint components: - parent: 15 @@ -21732,114 +18114,142 @@ entities: type: Transform - location: bridge type: WarpPoint -- uid: 2532 +- uid: 2347 type: Table components: - parent: 15 pos: 6.5,20.5 type: Transform -- uid: 2533 +- uid: 2348 type: ComputerId components: - parent: 15 pos: 8.5,23.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2534 + - containers: + IdCardConsole-privilegedId: + type: Content.Server.GameObjects.ContainerSlot + IdCardConsole-targetId: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2349 type: ComputerId components: - parent: 15 pos: 7.5,21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2535 + - containers: + IdCardConsole-privilegedId: + type: Content.Server.GameObjects.ContainerSlot + IdCardConsole-targetId: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2350 type: ComputerAlert components: - parent: 15 pos: 6.5,32.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2536 +- uid: 2351 type: ComputerPowerMonitoring components: - parent: 15 pos: 7.5,32.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2537 +- uid: 2352 type: Paper components: - parent: 15 pos: -1.344388,25.58412 type: Transform -- uid: 2538 + - anchored: False + type: Collidable +- uid: 2353 type: Pen components: - parent: 15 pos: -1.563138,24.568495 type: Transform -- uid: 2539 + - anchored: False + type: Collidable +- uid: 2354 type: TableWood components: - parent: 15 pos: -1.5,25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2540 +- uid: 2355 type: TableWood components: - parent: 15 pos: -1.5,24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2541 +- uid: 2356 type: ChairOfficeDark components: - parent: 15 pos: -0.5,24.5 rot: 3.141592653589793 rad type: Transform -- uid: 2542 + - anchored: False + type: Collidable +- uid: 2357 type: ChairOfficeDark components: - parent: 15 pos: -0.5,25.5 rot: 3.141592653589793 rad type: Transform -- uid: 2543 + - anchored: False + type: Collidable +- uid: 2358 type: ChairOfficeDark components: - parent: 15 pos: -2.5,24.5 type: Transform -- uid: 2544 + - anchored: False + type: Collidable +- uid: 2359 type: ChairOfficeDark components: - parent: 15 pos: -2.5,25.5 type: Transform -- uid: 2545 + - anchored: False + type: Collidable +- uid: 2360 type: ChairOfficeDark components: - parent: 15 pos: 7.5,31.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2546 + - anchored: False + type: Collidable +- uid: 2361 type: ComputerMedicalRecords components: - parent: 15 pos: 0.5,32.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2547 +- uid: 2362 type: ChairOfficeDark components: - parent: 15 pos: 0.5,31.5 rot: 1.5707963267948966 rad type: Transform -- uid: 2548 + - anchored: False + type: Collidable +- uid: 2363 type: ComputerSupplyRequest components: - parent: 15 @@ -21859,1001 +18269,767 @@ entities: - cargo.glass - cargo.cable type: GalacticMarket -- uid: 2549 +- uid: 2364 type: Table components: - parent: 15 pos: 9.5,18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2550 +- uid: 2365 type: Table components: - parent: 15 pos: 9.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2551 +- uid: 2366 type: Table components: - parent: 15 pos: 9.5,17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2552 +- uid: 2367 type: Chair components: - parent: 15 pos: 8.5,17.5 type: Transform -- uid: 2553 + - anchored: False + type: Collidable +- uid: 2368 type: ChairOfficeDark components: - parent: 15 pos: 10.5,17.5 rot: 3.141592653589793 rad type: Transform -- uid: 2554 + - anchored: False + type: Collidable +- uid: 2369 type: Paper components: - parent: 15 pos: 9.699392,17.630365 rot: 3.141592653589793 rad type: Transform -- uid: 2555 + - anchored: False + type: Collidable +- uid: 2370 type: solid_wall components: - parent: 15 pos: -34.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2556 +- uid: 2371 type: solid_wall components: - parent: 15 pos: -34.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2557 +- uid: 2372 type: solid_wall components: - parent: 15 pos: -34.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2558 +- uid: 2373 type: solid_wall components: - parent: 15 pos: -34.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2559 +- uid: 2374 type: solid_wall components: - parent: 15 pos: -33.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2560 +- uid: 2375 type: solid_wall components: - parent: 15 pos: -32.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2561 +- uid: 2376 type: solid_wall components: - parent: 15 pos: -31.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2562 +- uid: 2377 type: solid_wall components: - parent: 15 pos: -30.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2563 +- uid: 2378 type: solid_wall components: - parent: 15 pos: -29.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2564 +- uid: 2379 type: solid_wall components: - parent: 15 pos: -28.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2565 +- uid: 2380 type: solid_wall components: - parent: 15 pos: -27.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2566 +- uid: 2381 type: solid_wall components: - parent: 15 pos: -26.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2567 +- uid: 2382 type: solid_wall components: - parent: 15 pos: -25.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2568 +- uid: 2383 type: solid_wall components: - parent: 15 pos: -20.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2569 +- uid: 2384 type: solid_wall components: - parent: 15 pos: -21.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2570 +- uid: 2385 type: solid_wall components: - parent: 15 pos: -25.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2571 +- uid: 2386 type: solid_wall components: - parent: 15 pos: -16.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2573 +- uid: 2387 type: solid_wall components: - parent: 15 pos: -22.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2574 +- uid: 2388 type: solid_wall components: - parent: 15 pos: -24.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2575 +- uid: 2389 type: TrashSpawner components: - parent: 15 pos: 7.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2576 +- uid: 2390 type: solid_wall components: - parent: 15 pos: -19.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2577 +- uid: 2391 type: solid_wall components: - parent: 15 pos: -20.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2578 +- uid: 2392 type: solid_wall components: - parent: 15 pos: -20.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2579 +- uid: 2393 type: solid_wall components: - parent: 15 pos: -19.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2580 +- uid: 2394 type: solid_wall components: - parent: 15 pos: -18.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2581 +- uid: 2395 type: solid_wall components: - parent: 15 pos: -17.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2582 +- uid: 2396 type: solid_wall components: - parent: 15 pos: -20.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2583 +- uid: 2397 type: solid_wall components: - parent: 15 pos: -15.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2584 +- uid: 2398 type: solid_wall components: - parent: 15 pos: -14.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2585 +- uid: 2399 type: solid_wall components: - parent: 15 pos: -13.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2586 +- uid: 2400 type: solid_wall components: - parent: 15 pos: -12.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2587 +- uid: 2401 type: solid_wall components: - parent: 15 pos: -15.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2588 +- uid: 2402 type: solid_wall components: - parent: 15 pos: -15.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2589 +- uid: 2403 type: solid_wall components: - parent: 15 pos: -15.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2590 +- uid: 2404 type: solid_wall components: - parent: 15 pos: -15.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2591 +- uid: 2405 type: solid_wall components: - parent: 15 pos: -15.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2592 +- uid: 2406 type: solid_wall components: - parent: 15 pos: -10.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2593 +- uid: 2407 type: solid_wall components: - parent: 15 pos: -11.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2594 +- uid: 2408 type: solid_wall components: - parent: 15 pos: -13.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2595 +- uid: 2409 type: solid_wall components: - parent: 15 pos: -14.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2596 +- uid: 2410 type: solid_wall components: - parent: 15 pos: -10.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2597 +- uid: 2411 type: solid_wall components: - parent: 15 pos: -10.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2598 +- uid: 2412 type: solid_wall components: - parent: 15 pos: -11.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2599 +- uid: 2413 type: solid_wall components: - parent: 15 pos: -12.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2600 +- uid: 2414 type: solid_wall components: - parent: 15 pos: -13.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2601 +- uid: 2415 type: solid_wall components: - parent: 15 pos: -14.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2602 +- uid: 2416 type: Catwalk components: - parent: 15 pos: -23.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2603 +- uid: 2417 type: Catwalk components: - parent: 15 pos: -17.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2604 +- uid: 2418 type: Catwalk components: - parent: 15 pos: -9.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2608 +- uid: 2419 type: Wire components: - parent: 15 pos: -33.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2609 +- uid: 2420 type: Wire components: - parent: 15 pos: -33.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2610 +- uid: 2421 type: Wire components: - parent: 15 pos: -33.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2611 +- uid: 2422 type: Wire components: - parent: 15 pos: -33.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2612 +- uid: 2423 type: Wire components: - parent: 15 pos: -33.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2613 +- uid: 2424 type: Wire components: - parent: 15 pos: -32.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2614 +- uid: 2425 type: Wire components: - parent: 15 pos: -31.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2615 +- uid: 2426 type: Wire components: - parent: 15 pos: -30.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2616 +- uid: 2427 type: Wire components: - parent: 15 pos: -29.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2617 +- uid: 2428 type: Wire components: - parent: 15 pos: -28.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2618 +- uid: 2429 type: Wire components: - parent: 15 pos: -27.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2619 +- uid: 2430 type: Wire components: - parent: 15 pos: -26.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2620 +- uid: 2431 type: Wire components: - parent: 15 pos: -25.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2621 +- uid: 2432 type: Wire components: - parent: 15 pos: -24.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2622 +- uid: 2433 type: Wire components: - parent: 15 pos: -23.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2623 +- uid: 2434 type: Wire components: - parent: 15 pos: -18.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2624 +- uid: 2435 type: Wire components: - parent: 15 pos: -21.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2625 +- uid: 2436 type: Wire components: - parent: 15 pos: -22.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2626 +- uid: 2437 type: Wire components: - parent: 15 pos: -19.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2627 +- uid: 2438 type: Wire components: - parent: 15 pos: -20.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2628 +- uid: 2439 type: Wire components: - parent: 15 pos: -18.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2629 +- uid: 2440 type: Wire components: - parent: 15 pos: -18.5,-13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2630 +- uid: 2441 type: Wire components: - parent: 15 pos: -18.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2631 +- uid: 2442 type: Wire components: - parent: 15 pos: -9.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2632 +- uid: 2443 type: Wire components: - parent: 15 pos: -17.5,-14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2637 +- uid: 2444 type: Wire components: - parent: 15 pos: -15.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2638 +- uid: 2445 type: Wire components: - parent: 15 pos: -14.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2639 +- uid: 2446 type: Wire components: - parent: 15 pos: -13.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2640 +- uid: 2447 type: Wire components: - parent: 15 pos: -12.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2641 +- uid: 2448 type: Wire components: - parent: 15 pos: -11.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2642 +- uid: 2449 type: Wire components: - parent: 15 pos: -10.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2643 +- uid: 2450 type: Wire components: - parent: 15 pos: -23.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2644 +- uid: 2451 type: Wire components: - parent: 15 pos: -23.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2645 +- uid: 2452 type: Wire components: - parent: 15 pos: -23.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2646 +- uid: 2453 type: Wire components: - parent: 15 pos: -21.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2647 +- uid: 2454 type: Wire components: - parent: 15 pos: -20.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2648 +- uid: 2455 type: SpawnPointLatejoin components: - parent: 15 pos: -36.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2649 +- uid: 2456 type: Table components: - parent: 15 pos: -10.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2650 +- uid: 2457 type: Table components: - parent: 15 pos: -10.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2651 +- uid: 2458 type: Table components: - parent: 15 pos: -10.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2652 +- uid: 2459 type: Wire components: - parent: 15 pos: -9.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2653 +- uid: 2460 type: Wire components: - parent: 15 pos: -10.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2654 +- uid: 2461 type: Wire components: - parent: 15 pos: -11.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2656 +- uid: 2462 type: SpawnPointSecurityOfficer components: - parent: 15 pos: -11.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2657 +- uid: 2463 type: VendingMachineTheater components: - parent: 15 pos: -17.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2658 +- uid: 2464 type: PianoInstrument components: - parent: 15 pos: -9.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 2659 + - anchored: False + type: Collidable +- uid: 2465 type: Stool components: - parent: 15 pos: -9.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2660 + - anchored: False + type: Collidable +- uid: 2466 type: Table components: - parent: 15 pos: -14.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2661 +- uid: 2467 type: Table components: - parent: 15 pos: -14.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2662 +- uid: 2468 type: KitchenMicrowave components: - parent: 15 pos: -14.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2663 + - containers: + microwave_entity_container: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2469 type: Wire components: - parent: 15 pos: -11.5,-0.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2664 +- uid: 2470 type: Wire components: - parent: 15 pos: -11.5,1.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2665 +- uid: 2471 type: Poweredlight components: - parent: 15 @@ -22864,7 +19040,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2667 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2472 type: Poweredlight components: - parent: 15 @@ -22875,7 +19055,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2669 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2473 type: PoweredSmallLight components: - parent: 15 @@ -22886,7 +19070,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2671 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2474 type: Poweredlight components: - parent: 15 @@ -22897,432 +19085,340 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2673 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2475 type: GravityGenerator components: - parent: 15 pos: 49.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2674 +- uid: 2476 type: reinforced_wall components: - parent: 15 pos: 46.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2675 +- uid: 2477 type: reinforced_wall components: - parent: 15 pos: 46.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2676 +- uid: 2478 type: reinforced_wall components: - parent: 15 pos: 46.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2677 +- uid: 2479 type: reinforced_wall components: - parent: 15 pos: 46.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2678 +- uid: 2480 type: reinforced_wall components: - parent: 15 pos: 46.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2679 +- uid: 2481 type: reinforced_wall components: - parent: 15 pos: 46.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2680 +- uid: 2482 type: reinforced_wall components: - parent: 15 pos: 46.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2681 +- uid: 2483 type: reinforced_wall components: - parent: 15 pos: 47.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2682 +- uid: 2484 type: reinforced_wall components: - parent: 15 pos: 48.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2683 +- uid: 2485 type: reinforced_wall components: - parent: 15 pos: 49.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2684 +- uid: 2486 type: reinforced_wall components: - parent: 15 pos: 50.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2685 +- uid: 2487 type: reinforced_wall components: - parent: 15 pos: 51.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2686 +- uid: 2488 type: reinforced_wall components: - parent: 15 pos: 52.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2687 +- uid: 2489 type: reinforced_wall components: - parent: 15 pos: 52.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2688 +- uid: 2490 type: reinforced_wall components: - parent: 15 pos: 52.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2689 +- uid: 2491 type: reinforced_wall components: - parent: 15 pos: 52.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2690 +- uid: 2492 type: reinforced_wall components: - parent: 15 pos: 52.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2691 +- uid: 2493 type: reinforced_wall components: - parent: 15 pos: 52.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2692 +- uid: 2494 type: reinforced_wall components: - parent: 15 pos: 52.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2693 +- uid: 2495 type: reinforced_wall components: - parent: 15 pos: 51.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2694 +- uid: 2496 type: reinforced_wall components: - parent: 15 pos: 47.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2695 +- uid: 2497 type: solid_wall components: - parent: 15 pos: 51.5,4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2696 +- uid: 2498 type: solid_wall components: - parent: 15 pos: 49.5,5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2697 +- uid: 2499 type: solid_wall components: - parent: 15 pos: 46.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2698 +- uid: 2500 type: solid_wall components: - parent: 15 pos: 47.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2699 +- uid: 2501 type: solid_wall components: - parent: 15 pos: 47.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2700 +- uid: 2502 type: solid_wall components: - parent: 15 pos: 50.5,5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2701 +- uid: 2503 type: solid_wall components: - parent: 15 pos: 51.5,5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2702 +- uid: 2504 type: reinforced_wall components: - parent: 15 pos: 48.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2703 +- uid: 2505 type: reinforced_wall components: - parent: 15 pos: 50.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2704 +- uid: 2506 type: Wire components: - parent: 15 pos: 42.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2705 +- uid: 2507 type: Wire components: - parent: 15 pos: 43.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2706 +- uid: 2508 type: Wire components: - parent: 15 pos: 44.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2707 +- uid: 2509 type: Wire components: - parent: 15 pos: 45.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2708 +- uid: 2510 type: Wire components: - parent: 15 pos: 46.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2709 +- uid: 2511 type: Wire components: - parent: 15 pos: 47.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2710 +- uid: 2512 type: Wire components: - parent: 15 pos: 48.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2711 +- uid: 2513 type: Wire components: - parent: 15 pos: 49.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2712 +- uid: 2514 type: Wire components: - parent: 15 pos: 49.5,3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2713 +- uid: 2515 type: Wire components: - parent: 15 pos: 49.5,2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2714 +- uid: 2516 type: Wire components: - parent: 15 pos: 49.5,1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2715 +- uid: 2517 type: Wire components: - parent: 15 pos: 49.5,0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2716 +- uid: 2518 type: Wire components: - parent: 15 pos: 49.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2717 +- uid: 2519 type: Wire components: - parent: 15 pos: 49.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2718 +- uid: 2520 type: Wire components: - parent: 15 pos: 49.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2719 +- uid: 2521 type: APC components: - parent: 15 pos: 50.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2720 +- uid: 2522 type: Poweredlight components: - parent: 15 @@ -23330,7 +19426,11 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 2722 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2523 type: Poweredlight components: - parent: 15 @@ -23339,1431 +19439,1671 @@ entities: type: Transform - color: '#FFFFFFFF' type: PointLight -- uid: 2724 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2524 type: Catwalk components: - parent: 15 pos: 47.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2725 +- uid: 2525 type: Catwalk components: - parent: 15 pos: 48.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2726 +- uid: 2526 type: Catwalk components: - parent: 15 pos: 49.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2727 +- uid: 2527 type: Catwalk components: - parent: 15 pos: 50.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2728 +- uid: 2528 type: Catwalk components: - parent: 15 pos: 51.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2729 +- uid: 2529 type: Catwalk components: - parent: 15 pos: 51.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2730 +- uid: 2530 type: Catwalk components: - parent: 15 pos: 51.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2731 +- uid: 2531 type: Catwalk components: - parent: 15 pos: 51.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2732 +- uid: 2532 type: Catwalk components: - parent: 15 pos: 51.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2733 +- uid: 2533 type: Catwalk components: - parent: 15 pos: 50.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2734 +- uid: 2534 type: Catwalk components: - parent: 15 pos: 49.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2735 +- uid: 2535 type: Catwalk components: - parent: 15 pos: 48.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2736 +- uid: 2536 type: Catwalk components: - parent: 15 pos: 47.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2737 +- uid: 2537 type: Catwalk components: - parent: 15 pos: 47.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2738 +- uid: 2538 type: Catwalk components: - parent: 15 pos: 47.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2739 +- uid: 2539 type: WardrobePajamaFilled components: - parent: 15 pos: -27.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2740 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2540 type: WardrobeGreyFilled components: - parent: 15 pos: -27.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2741 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2541 type: LockerGeneric components: - parent: 15 pos: -11.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2742 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2542 type: LockerL3JanitorFilled components: - parent: 15 pos: -13.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2743 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2543 type: WardrobeScienceFilled components: - parent: 15 pos: -11.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2744 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2544 type: LockerResearchDirectorFilled components: - parent: 15 pos: -2.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2745 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2545 type: LockerEngineerFilled components: - parent: 15 pos: 35.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2746 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2546 type: LockerEngineerFilled components: - parent: 15 pos: 35.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2747 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2547 type: LockerChiefEngineerFilled components: - parent: 15 pos: 37.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2748 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2548 type: LockerAtmosphericsFilled components: - parent: 15 pos: 36.5,8.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2749 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2549 type: LockerAtmosphericsFilled components: - parent: 15 pos: 36.5,9.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2750 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2550 type: WardrobeAtmosphericsFilled components: - parent: 15 pos: 36.5,10.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2751 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2551 type: WardrobeEngineeringFilled components: - parent: 15 pos: 32.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2752 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2552 type: LockerHeadOfPersonnelFilled components: - parent: 15 pos: 10.5,21.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2753 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2553 type: WardrobeBlackFilled components: - parent: 15 pos: -28.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2754 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2554 type: LockerChiefMedicalOfficerFilled components: - parent: 15 pos: 21.5,-15.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2755 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2555 type: LockerL3SecurityFilled components: - parent: 15 pos: -11.5,21.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2756 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2556 type: WardrobeMedicalDoctorFilled components: - parent: 15 pos: 23.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2757 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2557 type: LockerSecurityFilled components: - parent: 15 pos: -14.5,13.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2758 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2558 type: LockerSecurityFilled components: - parent: 15 pos: -13.5,13.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2759 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2559 type: LockerSecurityFilled components: - parent: 15 pos: -12.5,13.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2760 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2560 type: LockerL3VirologyFilled components: - parent: 15 pos: 24.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2761 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2561 type: LockerMedicineFilled components: - parent: 15 pos: 18.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2762 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2562 type: WardrobeWhiteFilled components: - parent: 15 pos: 7.5,-16.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2763 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2563 type: LockerChefFilled components: - parent: 15 pos: -14.5,1.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2764 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2564 type: LockerJanitorFilled components: - parent: 15 pos: -19.5,10.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2765 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2565 type: LockerL3JanitorFilled components: - parent: 15 pos: -19.5,9.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2766 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2566 type: WardrobePrisonFilled components: - parent: 15 pos: 0.5,14.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2767 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2567 type: PottedPlantRandom components: - parent: 15 pos: 0.5,26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2768 + - containers: + potted_plant_hide: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2568 type: WardrobeCargoFilled components: - parent: 15 pos: 23.5,7.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2769 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2569 type: LockerCaptainFilled components: - parent: 15 pos: 6.5,26.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2770 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2570 type: LockerEmergencyFilledRandom components: - parent: 15 pos: -34.5,10.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2771 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2571 type: LockerEmergencyFilledRandom components: - parent: 15 pos: -39.5,2.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2772 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2572 type: LockerEmergencyFilledRandom components: - parent: 15 pos: -37.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2773 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2573 type: LockerEmergencyFilledRandom components: - parent: 15 pos: -11.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2774 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2574 type: LockerFireFilled components: - parent: 15 pos: -14.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2775 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2575 type: LockerEmergencyFilledRandom components: - parent: 15 pos: 23.5,1.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2776 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2576 type: LockerEmergencyFilledRandom components: - parent: 15 pos: 26.5,12.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2777 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2577 type: LockerEmergencyFilledRandom components: - parent: 15 pos: -7.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2778 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2578 type: LockerEmergencyFilledRandom components: - parent: 15 pos: -15.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2779 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2579 type: LockerFireFilled components: - parent: 15 pos: 9.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2780 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2580 type: LockerEmergencyFilledRandom components: - parent: 15 pos: 8.5,-18.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2781 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2581 type: LockerFireFilled components: - parent: 15 pos: 23.5,0.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2782 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2582 type: LockerFireFilled components: - parent: 15 pos: 44.5,9.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2783 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2583 type: LockerEmergencyFilledRandom components: - parent: 15 pos: 43.5,9.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2784 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2584 type: LockerFireFilled components: - parent: 15 pos: 28.5,12.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2785 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2585 type: LockerEmergencyFilledRandom components: - parent: 15 pos: 12.5,21.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2786 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2586 type: LockerFireFilled components: - parent: 15 pos: 13.5,21.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2787 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2587 type: LockerBombFilled components: - parent: 15 pos: -12.5,21.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2788 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2588 type: LockerBombFilled components: - parent: 15 pos: -17.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2789 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2589 type: LockerFireFilled components: - parent: 15 pos: -11.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2790 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2590 type: LockerFireFilled components: - parent: 15 pos: -37.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2791 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2591 type: PottedPlantRandom components: - parent: 15 pos: -39.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2792 + - containers: + potted_plant_hide: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2592 type: PottedPlantRandom components: - parent: 15 pos: -25.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2793 + - containers: + potted_plant_hide: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2593 type: LockerEmergencyFilledRandom components: - parent: 15 pos: -21.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2794 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2594 type: PottedPlantRD components: - parent: 15 pos: -2.5,-22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2795 + - containers: + potted_plant_hide: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2595 type: LockerEmergencyFilledRandom components: - parent: 15 pos: -0.5,14.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2796 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2596 type: LockerEmergencyFilledRandom components: - parent: 15 pos: 9.5,30.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2797 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2597 type: LockerEmergencyFilledRandom components: - parent: 15 pos: -2.5,30.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2798 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2598 type: PottedPlantRandom components: - parent: 15 pos: 7.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2799 + - containers: + potted_plant_hide: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2599 type: PottedPlantRandom components: - parent: 15 pos: 10.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2800 + - containers: + potted_plant_hide: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2600 type: LockerEmergencyFilledRandom components: - parent: 15 pos: 24.5,13.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2801 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2601 type: LockerEmergencyFilledRandom components: - parent: 15 pos: -23.5,11.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2802 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2602 type: PottedPlantRandom components: - parent: 15 pos: -24.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2803 + - containers: + potted_plant_hide: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2603 type: LockerEmergencyFilledRandom components: - parent: 15 pos: 5.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2804 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2604 type: PottedPlantRandom components: - parent: 15 pos: 1.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2805 + - containers: + potted_plant_hide: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2605 type: LockerBoozeFilled components: - parent: 15 pos: -3.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2806 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2606 type: VendingMachineBooze components: - parent: 15 pos: -4.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2807 +- uid: 2607 type: LockerEmergencyFilledRandom components: - parent: 15 pos: -9.5,23.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2808 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2608 type: PottedPlantRandom components: - parent: 15 pos: 5.5,21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2809 + - containers: + potted_plant_hide: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2609 type: PottedPlantRandom components: - parent: 15 pos: 12.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2810 + - containers: + potted_plant_hide: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2610 type: PottedPlantRandomPlastic components: - parent: 15 pos: 29.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2811 + - containers: + potted_plant_hide: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2611 type: PottedPlantRandom components: - parent: 15 pos: 21.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2812 + - containers: + potted_plant_hide: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2612 type: PottedPlantRandomPlastic components: - parent: 15 pos: -12.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2813 + - containers: + potted_plant_hide: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2613 type: SpawnPointCargoTechnician components: - parent: 15 pos: 14.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2814 +- uid: 2614 type: SpawnPointCargoTechnician components: - parent: 15 pos: 21.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2815 +- uid: 2615 type: SpawnPointChiefMedicalOfficer components: - parent: 15 pos: 24.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2816 +- uid: 2616 type: SpawnPointMedicalDoctor components: - parent: 15 pos: 6.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2817 +- uid: 2617 type: SpawnPointMedicalDoctor components: - parent: 15 pos: 14.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2818 +- uid: 2618 type: SpawnPointMedicalDoctor components: - parent: 15 pos: 22.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2819 +- uid: 2619 type: SpawnPointMedicalDoctor components: - parent: 15 pos: 16.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2820 +- uid: 2620 type: SpawnPointMedicalDoctor components: - parent: 15 pos: 11.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2821 +- uid: 2621 type: SpawnPointMedicalDoctor components: - parent: 15 pos: 15.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2822 +- uid: 2622 type: SpawnPointResearchDirector components: - parent: 15 pos: -5.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2823 +- uid: 2623 type: SpawnPointScientist components: - parent: 15 pos: -9.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2824 +- uid: 2624 type: SpawnPointScientist components: - parent: 15 pos: -8.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2825 +- uid: 2625 type: SpawnPointScientist components: - parent: 15 pos: -0.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2826 +- uid: 2626 type: SpawnPointScientist components: - parent: 15 pos: -4.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2827 +- uid: 2627 type: SpawnPointScientist components: - parent: 15 pos: -15.5,-19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2828 +- uid: 2628 type: SpawnPointBartender components: - parent: 15 pos: -5.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2829 +- uid: 2629 type: SpawnPointClown components: - parent: 15 pos: -18.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2830 +- uid: 2630 type: SpawnPointJanitor components: - parent: 15 pos: -20.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2831 +- uid: 2631 type: SpawnPointHeadOfSecurity components: - parent: 15 pos: -6.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2832 +- uid: 2632 type: SpawnPointCaptain components: - parent: 15 pos: 9.5,25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2833 +- uid: 2633 type: SpawnPointHeadOfPersonnel components: - parent: 15 pos: 7.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2834 +- uid: 2634 type: SpawnPointChiefEngineer components: - parent: 15 pos: 40.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2835 +- uid: 2635 type: SpawnPointStationEngineer components: - parent: 15 pos: 30.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2836 +- uid: 2636 type: solid_wall components: - parent: 15 pos: 45.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2837 +- uid: 2637 type: Wire components: - parent: 15 pos: 22.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2838 +- uid: 2638 type: Wire components: - parent: 15 pos: 22.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2839 +- uid: 2639 type: Wire components: - parent: 15 pos: 22.5,-23.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2840 +- uid: 2640 type: Wire components: - parent: 15 pos: 22.5,-24.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2841 +- uid: 2641 type: Wire components: - parent: 15 pos: 22.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2842 +- uid: 2642 type: Wire components: - parent: 15 pos: 21.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2843 +- uid: 2643 type: Wire components: - parent: 15 pos: 20.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2844 +- uid: 2644 type: Wire components: - parent: 15 pos: 19.5,-25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2845 +- uid: 2645 type: Wire components: - parent: 15 pos: 14.5,-21.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2846 +- uid: 2646 type: Wire components: - parent: 15 pos: 14.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 2847 +- uid: 2647 type: solid_wall components: - parent: 15 pos: 23.5,-22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2848 +- uid: 2648 type: solid_wall components: - parent: 15 pos: 23.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2849 +- uid: 2649 type: solid_wall components: - parent: 15 pos: 23.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2850 +- uid: 2650 type: solid_wall components: - parent: 15 pos: 23.5,-25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2851 +- uid: 2651 type: solid_wall components: - parent: 15 pos: 23.5,-26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2852 +- uid: 2652 type: solid_wall components: - parent: 15 pos: 22.5,-26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2853 +- uid: 2653 type: solid_wall components: - parent: 15 pos: 21.5,-26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2854 +- uid: 2654 type: solid_wall components: - parent: 15 pos: 20.5,-26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2855 +- uid: 2655 type: solid_wall components: - parent: 15 pos: 19.5,-26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2856 +- uid: 2656 type: solid_wall components: - parent: 15 pos: 18.5,-26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2857 +- uid: 2657 type: solid_wall components: - parent: 15 pos: 17.5,-26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2858 +- uid: 2658 type: solid_wall components: - parent: 15 pos: 16.5,-26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2859 +- uid: 2659 type: solid_wall components: - parent: 15 pos: 15.5,-26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2860 +- uid: 2660 type: solid_wall components: - parent: 15 pos: 14.5,-26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2861 +- uid: 2661 type: solid_wall components: - parent: 15 pos: 13.5,-26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2862 +- uid: 2662 type: solid_wall components: - parent: 15 pos: 13.5,-22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2863 +- uid: 2663 type: solid_wall components: - parent: 15 pos: 13.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2864 +- uid: 2664 type: solid_wall components: - parent: 15 pos: 13.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2865 +- uid: 2665 type: solid_wall components: - parent: 15 pos: 13.5,-25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2866 +- uid: 2666 type: solid_wall components: - parent: 15 pos: 20.5,-19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2867 +- uid: 2667 type: solid_wall components: - parent: 15 pos: 20.5,-20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2868 +- uid: 2668 type: solid_wall components: - parent: 15 pos: 20.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2869 +- uid: 2669 type: solid_wall components: - parent: 15 pos: 20.5,-22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2870 +- uid: 2670 type: solid_wall components: - parent: 15 pos: 20.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2871 +- uid: 2671 type: solid_wall components: - parent: 15 pos: 17.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2872 +- uid: 2672 type: solid_wall components: - parent: 15 pos: 16.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2873 +- uid: 2673 type: solid_wall components: - parent: 15 pos: 16.5,-22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2874 +- uid: 2674 type: solid_wall components: - parent: 15 pos: 16.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2875 +- uid: 2675 type: solid_wall components: - parent: 15 pos: 16.5,-20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2876 +- uid: 2676 type: solid_wall components: - parent: 15 pos: 16.5,-19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2877 +- uid: 2677 type: LowWall components: - parent: 15 pos: 17.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2878 +- uid: 2678 type: LowWall components: - parent: 15 pos: 18.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2879 +- uid: 2679 type: Window components: - parent: 15 pos: 17.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2880 +- uid: 2680 type: Window components: - parent: 15 pos: 18.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2881 +- uid: 2681 type: Table components: - parent: 15 pos: 19.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2882 +- uid: 2682 type: Table components: - parent: 15 pos: 19.5,-22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2883 +- uid: 2683 type: WardrobeWhite components: - parent: 15 pos: 17.5,-22.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics + - anchored: False + type: Collidable - IsPlaceable: False type: PlaceableSurface -- uid: 2884 + - containers: + EntityStorageComponent: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 2684 type: AirlockExternalLocked components: - name: Escape Shuttle Dock @@ -24772,7 +21112,7 @@ entities: pos: -41.5,4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2885 +- uid: 2685 type: AirlockExternalLocked components: - name: Escape Shuttle Dock @@ -24781,7 +21121,7 @@ entities: pos: -39.5,4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2886 +- uid: 2686 type: AirlockExternalLocked components: - name: Escape Shuttle Dock @@ -24790,7 +21130,7 @@ entities: pos: -39.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2887 +- uid: 2687 type: AirlockExternalLocked components: - name: Escape Shuttle Dock @@ -24799,7 +21139,7 @@ entities: pos: -41.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2888 +- uid: 2688 type: AirlockExternalLocked components: - name: Arrivals Shuttle Dock @@ -24808,7 +21148,7 @@ entities: pos: -37.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2889 +- uid: 2689 type: AirlockExternalLocked components: - name: Arrivals Shuttle Dock @@ -24817,7 +21157,7 @@ entities: pos: -39.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2890 +- uid: 2690 type: AirlockSecurityGlassLocked components: - name: Brig @@ -24826,7 +21166,7 @@ entities: pos: -5.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2891 +- uid: 2691 type: AirlockSecurityGlassLocked components: - name: Brig @@ -24835,7 +21175,7 @@ entities: pos: -5.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2892 +- uid: 2692 type: AirlockSecurityGlassLocked components: - name: Brig @@ -24844,7 +21184,7 @@ entities: pos: -6.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2893 +- uid: 2693 type: AirlockEngineeringLocked components: - name: Gravity Generator @@ -24853,7 +21193,7 @@ entities: pos: 49.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2894 +- uid: 2694 type: AirlockEngineeringGlassLocked components: - name: Engineering Equipment @@ -24862,7 +21202,7 @@ entities: pos: 33.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2895 +- uid: 2695 type: AirlockEngineeringGlassLocked components: - name: Atmospherics @@ -24871,7 +21211,7 @@ entities: pos: 33.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2896 +- uid: 2696 type: AirlockEngineeringLocked components: - name: Secure Storage @@ -24880,7 +21220,7 @@ entities: pos: 41.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2897 +- uid: 2697 type: AirlockEngineeringLocked components: - name: Secure Storage @@ -24889,35 +21229,35 @@ entities: pos: 40.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2898 +- uid: 2698 type: AirlockMaintEngiLocked components: - parent: 15 pos: 29.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2899 +- uid: 2699 type: AirlockMaintEngiLocked components: - parent: 15 pos: 43.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2900 +- uid: 2700 type: AirlockMaintCargoLocked components: - parent: 15 pos: 25.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2901 +- uid: 2701 type: AirlockMaintRnDLocked components: - parent: 15 pos: -16.5,-16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2902 +- uid: 2702 type: AirlockCommandGlassLocked components: - name: Heads of Staff Meeting Room @@ -24926,7 +21266,7 @@ entities: pos: 1.5,24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2903 +- uid: 2703 type: AirlockCommandGlassLocked components: - name: Heads of Staff Meeting Room @@ -24935,7 +21275,7 @@ entities: pos: 1.5,25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2904 +- uid: 2704 type: AirlockCommandLocked components: - name: Captain's Office @@ -24947,28 +21287,28 @@ entities: - access: - - Captain type: AccessReader -- uid: 2905 +- uid: 2705 type: AirlockMaintCommonLocked components: - parent: 15 pos: 6.5,-19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2906 +- uid: 2706 type: AirlockMaintCommonLocked components: - parent: 15 pos: 21.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2907 +- uid: 2707 type: AirlockMaintCommandLocked components: - parent: 15 pos: -1.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2908 +- uid: 2708 type: AirlockMedicalGlassLocked components: - name: Medical Bay @@ -24977,7 +21317,7 @@ entities: pos: 10.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2909 +- uid: 2709 type: AirlockMedicalGlassLocked components: - name: Medical Bay @@ -24986,7 +21326,7 @@ entities: pos: 11.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2910 +- uid: 2710 type: AirlockMedicalGlassLocked components: - name: Medical Storage @@ -24995,7 +21335,7 @@ entities: pos: 20.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2911 +- uid: 2711 type: AirlockMedicalGlassLocked components: - name: Surgery @@ -25004,7 +21344,7 @@ entities: pos: 19.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2912 +- uid: 2712 type: AirlockMedicalGlassLocked components: - name: Cloning @@ -25013,7 +21353,7 @@ entities: pos: 8.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2913 +- uid: 2713 type: AirlockSecurityGlassLocked components: - name: Security Equipment @@ -25022,7 +21362,7 @@ entities: pos: -10.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2914 +- uid: 2714 type: AirlockSecurityGlassLocked components: - name: Reception Desk @@ -25031,35 +21371,35 @@ entities: pos: -9.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2915 +- uid: 2715 type: AirlockMaintCommonLocked components: - parent: 15 pos: 0.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2916 +- uid: 2716 type: AirlockMaintMedLocked components: - parent: 15 pos: 14.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2917 +- uid: 2717 type: AirlockMaintMedLocked components: - parent: 15 pos: 20.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2918 +- uid: 2718 type: AirlockMaintRnDLocked components: - parent: 15 pos: -11.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2919 +- uid: 2719 type: AirlockScienceLocked components: - name: Science @@ -25068,7 +21408,7 @@ entities: pos: 0.5,-19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2920 +- uid: 2720 type: AirlockScienceLocked components: - name: Science @@ -25077,7 +21417,7 @@ entities: pos: 0.5,-20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2921 +- uid: 2721 type: AirlockScienceGlassLocked components: - name: Research and Development @@ -25086,14 +21426,14 @@ entities: pos: -3.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2922 +- uid: 2722 type: AirlockMaintCommonLocked components: - parent: 15 pos: -33.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2923 +- uid: 2723 type: AirlockCommandGlassLocked components: - name: Chief Engineer's Office @@ -25106,14 +21446,14 @@ entities: - - Engineering - Command type: AccessReader -- uid: 2924 +- uid: 2724 type: Catwalk components: - parent: 15 pos: 26.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2925 +- uid: 2725 type: AirlockMaintCommandLocked components: - parent: 15 @@ -25123,14 +21463,14 @@ entities: - access: - - HeadOfPersonnel type: AccessReader -- uid: 2926 +- uid: 2726 type: AirlockExternalLocked components: - parent: 15 pos: 15.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2927 +- uid: 2727 type: Airlock components: - name: Custodial Closet @@ -25142,28 +21482,28 @@ entities: - access: - - Janitor type: AccessReader -- uid: 2928 +- uid: 2728 type: AirlockMaintCommonLocked components: - parent: 15 pos: -34.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2929 +- uid: 2729 type: AirlockMaintCommonLocked components: - parent: 15 pos: -23.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2930 +- uid: 2730 type: AirlockMaintCommonLocked components: - parent: 15 pos: 1.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2931 +- uid: 2731 type: AirlockVaultLocked components: - name: Vault @@ -25172,7 +21512,7 @@ entities: pos: 0.5,17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2932 +- uid: 2732 type: AirlockMaintCommonLocked components: - parent: 15 @@ -25182,7 +21522,7 @@ entities: - access: - - Service type: AccessReader -- uid: 2933 +- uid: 2733 type: AirlockServiceGlassLocked components: - name: Kitchen @@ -25191,14 +21531,14 @@ entities: pos: -10.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2934 +- uid: 2734 type: AirlockMaintEngiLocked components: - parent: 15 pos: 28.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2935 +- uid: 2735 type: AirlockServiceGlassLocked components: - name: Bar @@ -25207,7 +21547,7 @@ entities: pos: -7.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2936 +- uid: 2736 type: AirlockSecurityGlassLocked components: - name: Brig @@ -25216,49 +21556,49 @@ entities: pos: -6.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2937 +- uid: 2737 type: AirlockMaintCommonLocked components: - parent: 15 pos: -16.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2938 +- uid: 2738 type: AirlockMaintCommonLocked components: - parent: 15 pos: 5.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2939 +- uid: 2739 type: AirlockMaintRnDLocked components: - parent: 15 pos: -4.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2940 +- uid: 2740 type: AirlockMaintIntLocked components: - parent: 15 pos: -12.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2941 +- uid: 2741 type: AirlockMaintIntLocked components: - parent: 15 pos: -13.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2942 +- uid: 2742 type: AirlockMaintCommonLocked components: - parent: 15 pos: -32.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2943 +- uid: 2743 type: AirlockMaintCommonLocked components: - parent: 15 @@ -25268,7 +21608,7 @@ entities: - access: - - Janitor type: AccessReader -- uid: 2944 +- uid: 2744 type: AirlockEngineeringGlassLocked components: - name: Engineering @@ -25277,7 +21617,7 @@ entities: pos: 30.5,3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2945 +- uid: 2745 type: AirlockEngineeringGlassLocked components: - name: Engineering @@ -25286,7 +21626,7 @@ entities: pos: 30.5,5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2946 +- uid: 2746 type: AirlockMedicalGlassLocked components: - name: Chemistry @@ -25295,7 +21635,7 @@ entities: pos: 7.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2947 +- uid: 2747 type: AirlockMedicalGlassLocked components: - name: Chemistry @@ -25304,7 +21644,7 @@ entities: pos: 17.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2948 +- uid: 2748 type: AirlockCommandGlassLocked components: - name: Chief Medical Officer's Office @@ -25317,7 +21657,7 @@ entities: - - Medical - Command type: AccessReader -- uid: 2949 +- uid: 2749 type: AirlockCommandGlassLocked components: - name: Server Room @@ -25330,7 +21670,7 @@ entities: - - Research - Command type: AccessReader -- uid: 2950 +- uid: 2750 type: AirlockCommandGlassLocked components: - name: Research Director's Office @@ -25343,7 +21683,7 @@ entities: - - Research - Command type: AccessReader -- uid: 2951 +- uid: 2751 type: AirlockScienceLocked components: - name: Testing Area @@ -25352,7 +21692,7 @@ entities: pos: -12.5,-19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2952 +- uid: 2752 type: AirlockScienceLocked components: - name: Testing Area @@ -25361,7 +21701,7 @@ entities: pos: -12.5,-20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2953 +- uid: 2753 type: AirlockGlass components: - name: Locker Room @@ -25370,7 +21710,7 @@ entities: pos: -26.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2954 +- uid: 2754 type: AirlockServiceGlassLocked components: - name: Tool Storage @@ -25382,7 +21722,7 @@ entities: - access: - - Maintenance type: AccessReader -- uid: 2955 +- uid: 2755 type: AirlockServiceGlassLocked components: - name: Tool Storage @@ -25394,7 +21734,7 @@ entities: - access: - - Maintenance type: AccessReader -- uid: 2956 +- uid: 2756 type: AirlockGlass components: - name: Locker Room @@ -25403,7 +21743,7 @@ entities: pos: -26.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2957 +- uid: 2757 type: AirlockServiceLocked components: - name: Theatre @@ -25415,7 +21755,7 @@ entities: - access: - - Theatre type: AccessReader -- uid: 2958 +- uid: 2758 type: Airlock components: - name: Bunk Dorms @@ -25424,7 +21764,7 @@ entities: pos: -26.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2959 +- uid: 2759 type: Airlock components: - name: Showers @@ -25433,7 +21773,7 @@ entities: pos: -21.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2964 +- uid: 2760 type: AirlockMaintCommonLocked components: - parent: 15 @@ -25443,62 +21783,66 @@ entities: - access: - - Service type: AccessReader -- uid: 2965 +- uid: 2761 type: AirlockMaintCommonLocked components: - parent: 15 pos: -31.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2966 +- uid: 2762 type: AirlockMaintCommonLocked components: - parent: 15 pos: 27.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2967 +- uid: 2763 type: Table components: - parent: 15 pos: -8.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2968 +- uid: 2764 type: Table components: - parent: 15 pos: -9.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2969 +- uid: 2765 type: Table components: - parent: 15 pos: -7.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2970 +- uid: 2766 type: Table components: - parent: 15 pos: -7.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2971 +- uid: 2767 type: ChairOfficeDark components: - parent: 15 pos: -9.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2972 + - anchored: False + type: Collidable +- uid: 2768 type: ChairOfficeDark components: - parent: 15 pos: -8.5,8.5 type: Transform -- uid: 2973 + - anchored: False + type: Collidable +- uid: 2769 type: AirlockVaultLocked components: - name: Armory @@ -25507,7 +21851,7 @@ entities: pos: -12.5,17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2974 +- uid: 2770 type: AirlockVaultLocked components: - name: Armory @@ -25516,7 +21860,7 @@ entities: pos: -10.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2975 +- uid: 2771 type: AirlockCommandGlassLocked components: - name: Bridge @@ -25525,7 +21869,7 @@ entities: pos: 2.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2976 +- uid: 2772 type: AirlockCommandGlassLocked components: - name: Bridge @@ -25534,7 +21878,7 @@ entities: pos: 4.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2977 +- uid: 2773 type: AirlockCommandGlassLocked components: - name: EVA @@ -25546,7 +21890,7 @@ entities: - access: - - External type: AccessReader -- uid: 2978 +- uid: 2774 type: AirlockCommandGlassLocked components: - name: EVA @@ -25558,7 +21902,7 @@ entities: - access: - - External type: AccessReader -- uid: 2979 +- uid: 2775 type: AirlockMaintCommandLocked components: - parent: 15 @@ -25568,7 +21912,7 @@ entities: - access: - - External type: AccessReader -- uid: 2980 +- uid: 2776 type: AirlockCargoGlassLocked components: - name: Cargo Office @@ -25577,7 +21921,7 @@ entities: pos: 13.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2981 +- uid: 2777 type: AirlockCargoGlassLocked components: - name: Cargo Bay @@ -25586,7 +21930,7 @@ entities: pos: 17.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2982 +- uid: 2778 type: AirlockCargoGlassLocked components: - name: Cargo Bay @@ -25595,7 +21939,7 @@ entities: pos: 17.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2983 +- uid: 2779 type: AirlockExternalLocked components: - name: Supply Shuttle Dock @@ -25607,7 +21951,7 @@ entities: - access: - - Cargo type: AccessReader -- uid: 2984 +- uid: 2780 type: AirlockExternalLocked components: - name: Supply Shuttle Dock @@ -25619,7 +21963,7 @@ entities: - access: - - Cargo type: AccessReader -- uid: 2985 +- uid: 2781 type: AirlockExternalLocked components: - name: Supply Shuttle Dock @@ -25631,7 +21975,7 @@ entities: - access: - - Cargo type: AccessReader -- uid: 2986 +- uid: 2782 type: AirlockExternalLocked components: - name: Supply Shuttle Dock @@ -25643,14 +21987,14 @@ entities: - access: - - Cargo type: AccessReader -- uid: 2987 +- uid: 2783 type: AirlockExternalLocked components: - parent: 15 pos: 14.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2988 +- uid: 2784 type: AirlockCommandGlassLocked components: - name: Head of Security's Office @@ -25663,7 +22007,7 @@ entities: - - Security - Command type: AccessReader -- uid: 2989 +- uid: 2785 type: Poweredlight components: - parent: 15 @@ -25673,7 +22017,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2991 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2786 type: Poweredlight components: - parent: 15 @@ -25684,7 +22032,11 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2993 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2787 type: Poweredlight components: - parent: 15 @@ -25695,21 +22047,25 @@ entities: type: PointLight - powerLoad: 40 type: PowerReceiver -- uid: 2995 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2788 type: reinforced_wall components: - parent: 15 pos: -15.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2996 +- uid: 2789 type: Catwalk components: - parent: 15 pos: -1.5,21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2997 +- uid: 2790 type: AirlockSecurityGlassLocked components: - name: Cell 1 @@ -25718,7 +22074,7 @@ entities: pos: -2.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2998 +- uid: 2791 type: AirlockSecurityGlassLocked components: - name: Cell 2 @@ -25727,419 +22083,329 @@ entities: pos: 0.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 2999 +- uid: 2792 type: SuspicionMeleeSpawner components: - parent: 15 pos: -27.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3000 +- uid: 2793 type: SuspicionMeleeSpawner components: - parent: 15 pos: -28.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3001 +- uid: 2794 type: SuspicionMeleeSpawner components: - parent: 15 pos: -29.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3002 +- uid: 2795 type: SuspicionMeleeSpawner components: - parent: 15 pos: -0.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3003 +- uid: 2796 type: SuspicionMeleeSpawner components: - parent: 15 pos: 6.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3004 +- uid: 2797 type: SuspicionMeleeSpawner components: - parent: 15 pos: 10.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3005 +- uid: 2798 type: SuspicionMeleeSpawner components: - parent: 15 pos: 15.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3006 +- uid: 2799 type: SuspicionMeleeSpawner components: - parent: 15 pos: 10.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3007 +- uid: 2800 type: SuspicionMeleeSpawner components: - parent: 15 pos: 18.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3008 +- uid: 2801 type: SuspicionMeleeSpawner components: - parent: 15 pos: 17.5,-20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3009 +- uid: 2802 type: SuspicionMeleeSpawner components: - parent: 15 pos: 22.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3010 +- uid: 2803 type: SuspicionRifleSpawner components: - parent: 15 pos: 23.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3011 +- uid: 2804 type: SuspicionRifleSpawner components: - parent: 15 pos: -2.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3012 +- uid: 2805 type: SuspicionRifleSpawner components: - parent: 15 pos: -14.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3013 +- uid: 2806 type: SuspicionRifleSpawner components: - parent: 15 pos: -32.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3014 +- uid: 2807 type: SuspicionPistolSpawner components: - parent: 15 pos: -18.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3015 +- uid: 2808 type: SuspicionPistolSpawner components: - parent: 15 pos: -31.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3016 +- uid: 2809 type: SuspicionPistolSpawner components: - parent: 15 pos: -20.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3017 +- uid: 2810 type: SuspicionRifleSpawner components: - parent: 15 pos: -7.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3018 +- uid: 2811 type: SuspicionRifleSpawner components: - parent: 15 pos: -7.5,21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3019 +- uid: 2812 type: SuspicionPistolSpawner components: - parent: 15 pos: 6.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3020 +- uid: 2813 type: SuspicionRifleSpawner components: - parent: 15 pos: 0.5,28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3021 +- uid: 2814 type: SuspicionRifleSpawner components: - parent: 15 pos: 6.5,28.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3022 +- uid: 2815 type: SuspicionPistolSpawner components: - parent: 15 pos: -13.5,24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3023 +- uid: 2816 type: SuspicionMeleeSpawner components: - parent: 15 pos: -4.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3024 +- uid: 2817 type: SuspicionRifleSpawner components: - parent: 15 pos: 5.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3094 +- uid: 2818 type: solid_wall components: - parent: 15 pos: -21.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3095 +- uid: 2819 type: Wire components: - parent: 15 pos: -15.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3096 +- uid: 2820 type: Wire components: - parent: 15 pos: -16.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3097 +- uid: 2821 type: Wire components: - parent: 15 pos: -16.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3098 +- uid: 2822 type: Wire components: - parent: 15 pos: -16.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3099 +- uid: 2823 type: Wire components: - parent: 15 pos: -16.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3100 +- uid: 2824 type: Wire components: - parent: 15 pos: -17.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3101 +- uid: 2825 type: Wire components: - parent: 15 pos: -18.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3102 +- uid: 2826 type: Wire components: - parent: 15 pos: -19.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3103 +- uid: 2827 type: Wire components: - parent: 15 pos: -16.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3104 +- uid: 2828 type: Wire components: - parent: 15 pos: -19.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3105 +- uid: 2829 type: Wire components: - parent: 15 pos: -16.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3106 +- uid: 2830 type: Wire components: - parent: 15 pos: -16.5,0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3107 +- uid: 2831 type: Wire components: - parent: 15 pos: -16.5,1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3108 +- uid: 2832 type: Wire components: - parent: 15 pos: -16.5,2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3109 +- uid: 2833 type: Wire components: - parent: 15 pos: -16.5,3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer -- uid: 3110 +- uid: 2834 type: solid_wall components: - parent: 15 pos: -14.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3111 +- uid: 2835 type: Table components: - parent: 15 pos: -15.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3112 +- uid: 2836 type: AirlockMaintCommonLocked components: - parent: 15 pos: -14.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3113 +- uid: 2837 type: AirlockMaintCommonLocked components: - parent: 15 pos: -16.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3114 +- uid: 2838 type: Airlock components: - name: Hydroponics @@ -26148,2975 +22414,3956 @@ entities: pos: -16.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3115 +- uid: 2839 type: Catwalk components: - parent: 15 pos: -16.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3116 +- uid: 2840 type: Catwalk components: - parent: 15 pos: -15.5,-4.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3117 +- uid: 2841 type: Catwalk components: - parent: 15 pos: -15.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3118 +- uid: 2842 type: Catwalk components: - parent: 15 pos: -16.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3119 +- uid: 2843 type: Catwalk components: - parent: 15 pos: -15.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3120 +- uid: 2844 type: Poweredlight components: - parent: 15 pos: -20.5,2 rot: -1.5707963267948966 rad type: Transform -- uid: 3122 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2845 type: Poweredlight components: - parent: 15 pos: -20.5,-3 rot: 1.5707963267948966 rad type: Transform -- uid: 3124 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2846 type: Poweredlight components: - parent: 15 pos: -16,-1.5 rot: 3.141592653589793 rad type: Transform -- uid: 3126 + - containers: + light_bulb: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer +- uid: 2847 type: TrashSpawner components: - parent: 15 pos: -21.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3127 +- uid: 2848 type: TrashSpawner components: - parent: 15 pos: -31.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3128 +- uid: 2849 type: TrashSpawner components: - parent: 15 pos: -32.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3129 +- uid: 2850 type: TrashSpawner components: - parent: 15 pos: -30.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3130 +- uid: 2851 type: TrashSpawner components: - parent: 15 pos: -25.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3131 +- uid: 2852 type: TrashSpawner components: - parent: 15 pos: -23.5,14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3132 +- uid: 2853 type: TrashSpawner components: - parent: 15 pos: -21.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3133 +- uid: 2854 type: TrashSpawner components: - parent: 15 pos: -17.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3134 +- uid: 2855 type: TrashSpawner components: - parent: 15 pos: -15.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3135 +- uid: 2856 type: TrashSpawner components: - parent: 15 pos: -18.5,19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3136 +- uid: 2857 type: TrashSpawner components: - parent: 15 pos: -18.5,25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3137 +- uid: 2858 type: TrashSpawner components: - parent: 15 pos: -15.5,24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3138 +- uid: 2859 type: TrashSpawner components: - parent: 15 pos: -8.5,25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3139 +- uid: 2860 type: TrashSpawner components: - parent: 15 pos: -7.5,23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3140 +- uid: 2861 type: TrashSpawner components: - parent: 15 pos: -4.5,22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3141 +- uid: 2862 type: TrashSpawner components: - parent: 15 pos: -2.5,20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3142 +- uid: 2863 type: TrashSpawner components: - parent: 15 pos: -3.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3143 +- uid: 2864 type: TrashSpawner components: - parent: 15 pos: 0.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3144 +- uid: 2865 type: TrashSpawner components: - parent: 15 pos: -36.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3145 +- uid: 2866 type: TrashSpawner components: - parent: 15 pos: -35.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3146 +- uid: 2867 type: TrashSpawner components: - parent: 15 pos: -32.5,5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3147 +- uid: 2868 type: TrashSpawner components: - parent: 15 pos: -22.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3148 +- uid: 2869 type: TrashSpawner components: - parent: 15 pos: -30.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3149 +- uid: 2870 type: TrashSpawner components: - parent: 15 pos: -30.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3150 +- uid: 2871 type: TrashSpawner components: - parent: 15 pos: -19.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3151 +- uid: 2872 type: TrashSpawner components: - parent: 15 pos: -32.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3152 +- uid: 2873 type: TrashSpawner components: - parent: 15 pos: -33.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3153 +- uid: 2874 type: TrashSpawner components: - parent: 15 pos: -33.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3154 +- uid: 2875 type: TrashSpawner components: - parent: 15 pos: -32.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3155 +- uid: 2876 type: TrashSpawner components: - parent: 15 pos: -28.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3156 +- uid: 2877 type: TrashSpawner components: - parent: 15 pos: -21.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3157 +- uid: 2878 type: TrashSpawner components: - parent: 15 pos: -21.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3158 +- uid: 2879 type: TrashSpawner components: - parent: 15 pos: -18.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3159 +- uid: 2880 type: TrashSpawner components: - parent: 15 pos: -12.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3160 +- uid: 2881 type: TrashSpawner components: - parent: 15 pos: -8.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3161 +- uid: 2882 type: TrashSpawner components: - parent: 15 pos: -9.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3162 +- uid: 2883 type: TrashSpawner components: - parent: 15 pos: -8.5,-11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3163 +- uid: 2884 type: TrashSpawner components: - parent: 15 pos: -11.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3164 +- uid: 2885 type: TrashSpawner components: - parent: 15 pos: -16.5,-5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3165 +- uid: 2886 type: TrashSpawner components: - parent: 15 pos: -6.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3166 +- uid: 2887 type: TrashSpawner components: - parent: 15 pos: -2.5,-10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3167 +- uid: 2888 type: TrashSpawner components: - parent: 15 pos: -0.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3168 +- uid: 2889 type: TrashSpawner components: - parent: 15 pos: -0.5,-8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3169 +- uid: 2890 type: TrashSpawner components: - parent: 15 pos: 0.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3170 +- uid: 2891 type: TrashSpawner components: - parent: 15 pos: -11.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3171 +- uid: 2892 type: TrashSpawner components: - parent: 15 pos: -11.5,-27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3172 +- uid: 2893 type: TrashSpawner components: - parent: 15 pos: -9.5,-25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3173 +- uid: 2894 type: TrashSpawner components: - parent: 15 pos: -5.5,-27.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3174 +- uid: 2895 type: TrashSpawner components: - parent: 15 pos: -2.5,-26.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3175 +- uid: 2896 type: TrashSpawner components: - parent: 15 pos: -0.5,-22.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3176 +- uid: 2897 type: TrashSpawner components: - parent: 15 pos: -10.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3177 +- uid: 2898 type: TrashSpawner components: - parent: 15 pos: 7.5,-18.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3178 +- uid: 2899 type: TrashSpawner components: - parent: 15 pos: 12.5,-19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3179 +- uid: 2900 type: TrashSpawner components: - parent: 15 pos: 14.5,-21.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3180 +- uid: 2901 type: TrashSpawner components: - parent: 15 pos: 14.5,-24.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3181 +- uid: 2902 type: TrashSpawner components: - parent: 15 pos: 18.5,-25.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3182 +- uid: 2903 type: TrashSpawner components: - parent: 15 pos: 22.5,-23.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3183 +- uid: 2904 type: TrashSpawner components: - parent: 15 pos: 21.5,-20.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3184 +- uid: 2905 type: TrashSpawner components: - parent: 15 pos: 21.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3185 +- uid: 2906 type: TrashSpawner components: - parent: 15 pos: 26.5,-17.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3186 +- uid: 2907 type: TrashSpawner components: - parent: 15 pos: 27.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3187 +- uid: 2908 type: TrashSpawner components: - parent: 15 pos: 24.5,-9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3188 +- uid: 2909 type: TrashSpawner components: - parent: 15 pos: 27.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3189 +- uid: 2910 type: TrashSpawner components: - parent: 15 pos: 27.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3190 +- uid: 2911 type: TrashSpawner components: - parent: 15 pos: 25.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3191 +- uid: 2912 type: TrashSpawner components: - parent: 15 pos: 21.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3192 +- uid: 2913 type: TrashSpawner components: - parent: 15 pos: 20.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3193 +- uid: 2914 type: TrashSpawner components: - parent: 15 pos: 32.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3194 +- uid: 2915 type: TrashSpawner components: - parent: 15 pos: 37.5,-7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3195 +- uid: 2916 type: TrashSpawner components: - parent: 15 pos: 37.5,-3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3196 +- uid: 2917 type: TrashSpawner components: - parent: 15 pos: 42.5,-2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3197 +- uid: 2918 type: TrashSpawner components: - parent: 15 pos: 44.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3198 +- uid: 2919 type: TrashSpawner components: - parent: 15 pos: 35.5,2.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3199 +- uid: 2920 type: TrashSpawner components: - parent: 15 pos: 27.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3200 +- uid: 2921 type: TrashSpawner components: - parent: 15 pos: 28.5,8.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3201 +- uid: 2922 type: TrashSpawner components: - parent: 15 pos: 26.5,10.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3202 +- uid: 2923 type: TrashSpawner components: - parent: 15 pos: 27.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3203 +- uid: 2924 type: TrashSpawner components: - parent: 15 pos: 24.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3204 +- uid: 2925 type: TrashSpawner components: - parent: 15 pos: 12.5,12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3205 +- uid: 2926 type: TrashSpawner components: - parent: 15 pos: 12.5,7.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3206 +- uid: 2927 type: TrashSpawner components: - parent: 15 pos: 6.5,1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3207 +- uid: 2928 type: TrashSpawner components: - parent: 15 pos: 25.5,6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3208 +- uid: 2929 type: TrashSpawner components: - parent: 15 pos: 19.5,3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3209 +- uid: 2930 type: TrashSpawner components: - parent: 15 pos: -7.5,5.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3210 +- uid: 2931 type: TrashSpawner components: - parent: 15 pos: -1.5,-0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3211 +- uid: 2932 type: TrashSpawner components: - parent: 15 pos: -8.5,-1.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3212 +- uid: 2933 type: TrashSpawner components: - parent: 15 pos: -17.5,3.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3213 +- uid: 2934 type: TrashSpawner components: - parent: 15 pos: -25.5,0.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3214 +- uid: 2935 type: TrashSpawner components: - parent: 15 pos: -22.5,-6.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3215 +- uid: 2936 type: TrashSpawner components: - parent: 15 pos: 4.5,9.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3216 +- uid: 2937 type: TrashSpawner components: - parent: 15 pos: 1.5,16.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3217 +- uid: 2938 type: TrashSpawner components: - parent: 15 pos: 13.5,19.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3218 +- uid: 2939 type: TrashSpawner components: - parent: 15 pos: 12.5,15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3219 +- uid: 2940 type: TrashSpawner components: - parent: 15 pos: 9.5,13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3220 +- uid: 2941 type: solid_wall components: - parent: 15 pos: -19.5,-15.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3221 +- uid: 2942 type: solid_wall components: - parent: 15 pos: -19.5,-14.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3222 +- uid: 2943 type: solid_wall components: - parent: 15 pos: -19.5,-13.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3223 +- uid: 2944 type: solid_wall components: - parent: 15 pos: -19.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3224 +- uid: 2945 type: solid_wall components: - parent: 15 pos: -20.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3225 +- uid: 2946 type: solid_wall components: - parent: 15 pos: -21.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3226 +- uid: 2947 type: solid_wall components: - parent: 15 pos: -22.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3227 +- uid: 2948 type: solid_wall components: - parent: 15 pos: -23.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3228 +- uid: 2949 type: AirlockMaintCommon components: - parent: 15 pos: -24.5,-12.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3229 +- uid: 2950 type: DisposalUnit components: - parent: 15 pos: -10.5,-17.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3230 + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2951 type: DisposalPipe components: - parent: 15 pos: -24.5,-10.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3231 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2952 type: DisposalPipe components: - parent: 15 pos: -25.5,-10.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3232 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2953 type: DisposalPipe components: - parent: 15 pos: -26.5,-10.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3233 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2954 type: DisposalUnit components: - parent: 15 pos: -27.5,-8.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3234 + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2955 type: DisposalPipe components: - parent: 15 pos: -28.5,-10.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3235 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2956 type: DisposalPipe components: - parent: 15 pos: -29.5,-10.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3236 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2957 type: DisposalPipe components: - parent: 15 pos: -30.5,-10.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3237 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2958 type: DisposalPipe components: - parent: 15 pos: -31.5,-10.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3238 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2959 type: DisposalBend components: - parent: 15 pos: -32.5,-10.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3239 + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2960 type: DisposalPipe components: - parent: 15 pos: -32.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3240 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2961 type: DisposalPipe components: - parent: 15 pos: -32.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3241 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2962 type: DisposalPipe components: - parent: 15 pos: -32.5,-7.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3242 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2963 type: DisposalPipe components: - parent: 15 pos: -32.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3243 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2964 type: DisposalPipe components: - parent: 15 pos: -32.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3244 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2965 type: DisposalPipe components: - parent: 15 pos: -32.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3245 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2966 type: DisposalPipe components: - parent: 15 pos: -32.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3246 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2967 type: DisposalPipe components: - parent: 15 pos: -32.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3247 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2968 type: DisposalPipe components: - parent: 15 pos: -32.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3248 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2969 type: DisposalPipe components: - parent: 15 pos: -32.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3249 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2970 type: DisposalPipe components: - parent: 15 pos: -32.5,0.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3250 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2971 type: DisposalPipe components: - parent: 15 pos: -32.5,1.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3251 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2972 type: DisposalPipe components: - parent: 15 pos: -32.5,2.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3252 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2973 type: DisposalPipe components: - parent: 15 pos: -31.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3253 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2974 type: DisposalPipe components: - parent: 15 pos: -30.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3254 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2975 type: DisposalPipe components: - parent: 15 pos: -29.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3255 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2976 type: DisposalPipe components: - parent: 15 pos: -28.5,4.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3256 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2977 type: DisposalPipe components: - parent: 15 pos: -27.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3257 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2978 type: DisposalPipe components: - parent: 15 pos: -26.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3258 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2979 type: DisposalPipe components: - parent: 15 pos: -25.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3259 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2980 type: DisposalPipe components: - parent: 15 pos: -24.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3260 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2981 type: DisposalPipe components: - parent: 15 pos: -23.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3261 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2982 type: DisposalUnit components: - parent: 15 pos: -22.5,6.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3262 + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2983 type: DisposalPipe components: - parent: 15 pos: -21.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3263 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2984 type: DisposalPipe components: - parent: 15 pos: -20.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3264 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2985 type: DisposalPipe components: - parent: 15 pos: -19.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3265 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2986 type: DisposalPipe components: - parent: 15 pos: -18.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3266 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2987 type: DisposalPipe components: - parent: 15 pos: -17.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3267 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2988 type: DisposalPipe components: - parent: 15 pos: -16.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3268 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2989 type: DisposalPipe components: - parent: 15 pos: -15.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3269 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2990 type: DisposalPipe components: - parent: 15 pos: -14.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3270 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2991 type: DisposalPipe components: - parent: 15 pos: -13.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3271 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2992 type: DisposalUnit components: - parent: 15 pos: -12.5,1.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3272 + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2993 type: DisposalPipe components: - parent: 15 pos: -11.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3273 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2994 type: DisposalPipe components: - parent: 15 pos: -10.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3274 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2995 type: DisposalPipe components: - parent: 15 pos: -9.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3275 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2996 type: DisposalPipe components: - parent: 15 pos: -8.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3276 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2997 type: DisposalPipe components: - parent: 15 pos: 1.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3277 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2998 type: DisposalPipe components: - parent: 15 pos: 0.5,2.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3278 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 2999 type: DisposalPipe components: - parent: 15 pos: -0.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3279 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3000 type: DisposalPipe components: - parent: 15 pos: -1.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3280 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3001 type: DisposalPipe components: - parent: 15 pos: -2.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3281 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3002 type: DisposalPipe components: - parent: 15 pos: -3.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3282 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3003 type: DisposalPipe components: - parent: 15 pos: -4.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3283 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3004 type: DisposalPipe components: - parent: 15 pos: -5.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3284 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3005 type: DisposalPipe components: - parent: 15 pos: -6.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3285 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3006 type: DisposalPipe components: - parent: 15 pos: -7.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3286 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3007 type: DisposalBend components: - parent: 15 pos: -17.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3287 + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3008 type: DisposalTrunk components: - parent: 15 pos: -22.5,6.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3288 + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3009 type: DisposalPipe components: - parent: 15 pos: -22.5,5.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3289 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3010 type: DisposalPipe components: - parent: 15 pos: -22.5,4.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3290 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3011 type: DisposalBend components: - parent: 15 pos: -32.5,3.5 type: Transform - - Anchored: True - type: Physics -- uid: 3291 + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3012 type: DisposalPipe components: - parent: 15 pos: -23.5,-11.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3292 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3013 type: DisposalPipe components: - parent: 15 pos: -23.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3293 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3014 type: DisposalPipe components: - parent: 15 pos: -22.5,-10.5 type: Transform - - Anchored: True - type: Physics -- uid: 3294 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3015 type: DisposalTrunk components: - parent: 15 pos: -12.5,1.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3295 + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3016 type: DisposalPipe components: - parent: 15 pos: -12.5,2.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3296 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3017 type: DisposalPipe components: - parent: 15 pos: -21.5,-10.5 type: Transform - - Anchored: True - type: Physics -- uid: 3297 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3018 type: DisposalTrunk components: - parent: 15 pos: -27.5,-8.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3298 + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3019 type: DisposalPipe components: - parent: 15 pos: -27.5,-9.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3299 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3020 type: DisposalUnit components: - parent: 15 pos: 0.5,1.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3300 + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3021 type: DisposalTrunk components: - parent: 15 pos: 0.5,1.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3301 + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3022 type: DisposalPipe components: - parent: 15 pos: -20.5,-10.5 type: Transform - - Anchored: True - type: Physics -- uid: 3302 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3023 type: DisposalPipe components: - parent: 15 pos: 2.5,4.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3303 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3024 type: DisposalPipe components: - parent: 15 pos: 3.5,-9.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3304 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3025 type: DisposalPipe components: - parent: 15 pos: 4.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3305 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3026 type: DisposalPipe components: - parent: 15 pos: 29.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3306 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3027 type: DisposalPipe components: - parent: 15 pos: 28.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3307 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3028 type: DisposalPipe components: - parent: 15 pos: 27.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3308 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3029 type: DisposalPipe components: - parent: 15 pos: 26.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3309 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3030 type: DisposalPipe components: - parent: 15 pos: 25.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3310 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3031 type: DisposalPipe components: - parent: 15 pos: 24.5,4.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3311 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3032 type: DisposalPipe components: - parent: 15 pos: 23.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3312 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3033 type: DisposalPipe components: - parent: 15 pos: 22.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3313 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3034 type: DisposalPipe components: - parent: 15 pos: 21.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3314 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3035 type: DisposalPipe components: - parent: 15 pos: 20.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3315 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3036 type: DisposalPipe components: - parent: 15 pos: 19.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3316 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3037 type: DisposalPipe components: - parent: 15 pos: 18.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3317 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3038 type: DisposalPipe components: - parent: 15 pos: 17.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3318 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3039 type: DisposalPipe components: - parent: 15 pos: 16.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3319 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3040 type: DisposalPipe components: - parent: 15 pos: 15.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3320 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3041 type: DisposalPipe components: - parent: 15 pos: 14.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3321 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3042 type: DisposalPipe components: - parent: 15 pos: 13.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3322 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3043 type: DisposalPipe components: - parent: 15 pos: 12.5,2.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3323 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3044 type: DisposalPipe components: - parent: 15 pos: 11.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3324 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3045 type: DisposalPipe components: - parent: 15 pos: 10.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3325 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3046 type: DisposalPipe components: - parent: 15 pos: 9.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3326 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3047 type: DisposalPipe components: - parent: 15 pos: 8.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3327 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3048 type: DisposalPipe components: - parent: 15 pos: 7.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3328 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3049 type: DisposalPipe components: - parent: 15 pos: 6.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3329 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3050 type: DisposalPipe components: - parent: 15 pos: 5.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3330 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3051 type: DisposalUnit components: - parent: 15 pos: 12.5,-2.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3331 + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3052 type: DisposalTrunk components: - parent: 15 pos: 12.5,-2.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3332 + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3053 type: ConveyorBelt components: - parent: 15 pos: -22.5,-13.5 type: Transform -- uid: 3333 +- uid: 3054 type: DisposalPipe components: - parent: 15 pos: 12.5,-0.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3334 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3055 type: DisposalPipe components: - parent: 15 pos: 12.5,0.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3335 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3056 type: DisposalPipe components: - parent: 15 pos: 12.5,1.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3336 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3057 type: DisposalPipe components: - parent: 15 pos: -19.5,-10.5 type: Transform - - Anchored: True - type: Physics -- uid: 3337 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3058 type: DisposalUnit components: - parent: 15 pos: 11.5,-11.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3338 + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3059 type: DisposalTrunk components: - parent: 15 pos: 11.5,-11.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3339 + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3060 type: DisposalPipe components: - parent: 15 pos: 10.5,-11.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3340 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3061 type: DisposalPipe components: - parent: 15 pos: 9.5,-11.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3341 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3062 type: DisposalPipe components: - parent: 15 pos: 4.5,-11.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3342 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3063 type: DisposalPipe components: - parent: 15 pos: 8.5,-11.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3343 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3064 type: DisposalPipe components: - parent: 15 pos: 7.5,-11.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3344 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3065 type: DisposalPipe components: - parent: 15 pos: 6.5,-11.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3345 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3066 type: DisposalPipe components: - parent: 15 pos: 5.5,-11.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3346 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3067 type: DisposalBend components: - parent: 15 pos: 3.5,-11.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3347 + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3068 type: DisposalPipe components: - parent: 15 pos: 3.5,-10.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3348 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3069 type: DisposalPipe components: - parent: 15 pos: 3.5,2.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3349 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3070 type: DisposalPipe components: - parent: 15 pos: 3.5,1.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3350 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3071 type: DisposalPipe components: - parent: 15 pos: 3.5,0.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3351 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3072 type: DisposalPipe components: - parent: 15 pos: 3.5,-0.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3352 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3073 type: DisposalPipe components: - parent: 15 pos: 3.5,-1.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3353 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3074 type: DisposalPipe components: - parent: 15 pos: 3.5,-2.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3354 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3075 type: DisposalPipe components: - parent: 15 pos: 3.5,-3.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3355 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3076 type: DisposalPipe components: - parent: 15 pos: 3.5,-4.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3356 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3077 type: DisposalPipe components: - parent: 15 pos: 3.5,-5.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3357 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3078 type: DisposalPipe components: - parent: 15 pos: 3.5,-6.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3358 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3079 type: DisposalPipe components: - parent: 15 pos: 3.5,-7.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3359 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3080 type: DisposalPipe components: - parent: 15 pos: 3.5,-8.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3360 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3081 type: DisposalPipe components: - parent: 15 pos: -18.5,-10.5 type: Transform - - Anchored: True - type: Physics -- uid: 3361 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3082 type: DisposalUnit components: - parent: 15 pos: -2.5,29.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3362 + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3083 type: DisposalTrunk components: - parent: 15 pos: -2.5,29.5 type: Transform - - Anchored: True - type: Physics -- uid: 3363 + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3084 type: DisposalPipe components: - parent: 15 pos: -1.5,29.5 type: Transform - - Anchored: True - type: Physics -- uid: 3364 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3085 type: DisposalPipe components: - parent: 15 pos: -0.5,29.5 type: Transform - - Anchored: True - type: Physics -- uid: 3365 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3086 type: DisposalPipe components: - parent: 15 pos: 0.5,29.5 type: Transform - - Anchored: True - type: Physics -- uid: 3366 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3087 type: DisposalPipe components: - parent: 15 pos: 1.5,29.5 type: Transform - - Anchored: True - type: Physics -- uid: 3367 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3088 type: DisposalPipe components: - parent: 15 pos: -17.5,-21.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3368 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3089 type: DisposalPipe components: - parent: 15 pos: 2.5,28.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3369 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3090 type: DisposalPipe components: - parent: 15 pos: 2.5,27.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3370 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3091 type: DisposalPipe components: - parent: 15 pos: 2.5,26.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3371 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3092 type: DisposalPipe components: - parent: 15 pos: 2.5,25.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3372 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3093 type: DisposalPipe components: - parent: 15 pos: 2.5,24.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3373 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3094 type: DisposalPipe components: - parent: 15 pos: 2.5,23.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3374 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3095 type: DisposalPipe components: - parent: 15 pos: 2.5,22.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3375 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3096 type: DisposalPipe components: - parent: 15 pos: 2.5,21.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3376 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3097 type: DisposalPipe components: - parent: 15 pos: 2.5,20.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3377 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3098 type: DisposalPipe components: - parent: 15 pos: 2.5,19.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3378 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3099 type: DisposalPipe components: - parent: 15 pos: 2.5,18.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3379 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3100 type: DisposalPipe components: - parent: 15 pos: 1.5,17.5 type: Transform - - Anchored: True - type: Physics -- uid: 3380 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3101 type: DisposalPipe components: - parent: 15 pos: 2.5,16.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3381 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3102 type: DisposalPipe components: - parent: 15 pos: 2.5,15.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3382 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3103 type: DisposalPipe components: - parent: 15 pos: 2.5,14.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3383 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3104 type: DisposalPipe components: - parent: 15 pos: 2.5,13.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3384 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3105 type: DisposalPipe components: - parent: 15 pos: 2.5,12.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3385 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3106 type: DisposalPipe components: - parent: 15 pos: 3.5,11.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3386 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3107 type: DisposalPipe components: - parent: 15 pos: 2.5,10.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3387 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3108 type: DisposalPipe components: - parent: 15 pos: 2.5,9.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3388 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3109 type: DisposalPipe components: - parent: 15 pos: 2.5,8.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3389 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3110 type: DisposalPipe components: - parent: 15 pos: 2.5,7.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3390 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3111 type: DisposalPipe components: - parent: 15 pos: 2.5,6.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3391 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3112 type: DisposalPipe components: - parent: 15 pos: 2.5,5.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3392 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3113 type: DisposalBend components: - parent: 15 pos: 2.5,29.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3393 + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3114 type: DisposalUnit components: - parent: 15 pos: 37.5,6.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3394 + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3115 type: DisposalTrunk components: - parent: 15 pos: 37.5,6.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3395 + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3116 type: DisposalPipe components: - parent: 15 pos: 37.5,5.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3396 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3117 type: DisposalPipe components: - parent: 15 pos: 37.5,4.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3397 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3118 type: DisposalBend components: - parent: 15 pos: 37.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3398 + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3119 type: DisposalPipe components: - parent: 15 pos: 31.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3399 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3120 type: DisposalPipe components: - parent: 15 pos: 32.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3400 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3121 type: DisposalPipe components: - parent: 15 pos: 33.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3401 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3122 type: DisposalPipe components: - parent: 15 pos: 34.5,2.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3402 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3123 type: DisposalPipe components: - parent: 15 pos: 35.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3403 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3124 type: DisposalPipe components: - parent: 15 pos: 36.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3404 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3125 type: DisposalPipe components: - parent: 15 pos: 30.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3405 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3126 type: DisposalUnit components: - parent: 15 pos: 34.5,-4.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3406 + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3127 type: DisposalTrunk components: - parent: 15 pos: 34.5,-4.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3407 + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3128 type: DisposalPipe components: - parent: 15 pos: 34.5,-3.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3408 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3129 type: DisposalPipe components: - parent: 15 pos: 34.5,-2.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3409 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3130 type: DisposalPipe components: - parent: 15 pos: 34.5,-1.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3410 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3131 type: DisposalPipe components: - parent: 15 pos: 34.5,-0.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3411 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3132 type: DisposalPipe components: - parent: 15 pos: 34.5,0.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3412 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3133 type: DisposalPipe components: - parent: 15 pos: 34.5,1.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3413 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3134 type: DisposalPipe components: - parent: 15 pos: -17.5,-20.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3414 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3135 type: Recycler components: - parent: 15 pos: -21.5,-13.5 type: Transform -- uid: 3415 +- uid: 3136 type: DisposalPipe components: - parent: 15 pos: -17.5,-19.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3416 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3137 type: DisposalPipe components: - parent: 15 pos: 15.5,-1.5 type: Transform - - Anchored: True - type: Physics -- uid: 3417 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3138 type: DisposalPipe components: - parent: 15 pos: 14.5,-1.5 type: Transform - - Anchored: True - type: Physics -- uid: 3418 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3139 type: DisposalPipe components: - parent: 15 pos: 13.5,-1.5 type: Transform - - Anchored: True - type: Physics -- uid: 3419 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3140 type: DisposalUnit components: - parent: 15 pos: 24.5,8.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3420 + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3141 type: DisposalTrunk components: - parent: 15 pos: 24.5,8.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3421 + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3142 type: DisposalPipe components: - parent: 15 pos: 24.5,7.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3422 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3143 type: DisposalPipe components: - parent: 15 pos: 24.5,6.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3423 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3144 type: DisposalPipe components: - parent: 15 pos: 24.5,5.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3424 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3145 type: DisposalPipe components: - parent: 15 pos: -17.5,-18.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3425 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3146 type: DisposalUnit components: - parent: 15 pos: 6.5,11.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3426 + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3147 type: DisposalTrunk components: - parent: 15 pos: 6.5,11.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3427 + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3148 type: DisposalPipe components: - parent: 15 pos: 5.5,11.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3428 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3149 type: DisposalPipe components: - parent: 15 pos: 4.5,11.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3429 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3150 type: DisposalPipe components: - parent: 15 pos: -17.5,-17.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3430 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3151 type: DisposalUnit components: - parent: 15 pos: -5.5,17.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3431 + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3152 type: DisposalTrunk components: - parent: 15 pos: -5.5,17.5 type: Transform - - Anchored: True - type: Physics -- uid: 3432 + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3153 type: DisposalPipe components: - parent: 15 pos: -4.5,17.5 type: Transform - - Anchored: True - type: Physics -- uid: 3433 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3154 type: DisposalPipe components: - parent: 15 pos: -3.5,17.5 type: Transform - - Anchored: True - type: Physics -- uid: 3434 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3155 type: DisposalPipe components: - parent: 15 pos: -2.5,17.5 type: Transform - - Anchored: True - type: Physics -- uid: 3435 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3156 type: DisposalPipe components: - parent: 15 pos: -1.5,17.5 type: Transform - - Anchored: True - type: Physics -- uid: 3436 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3157 type: DisposalPipe components: - parent: 15 pos: -0.5,17.5 type: Transform - - Anchored: True - type: Physics -- uid: 3437 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3158 type: DisposalPipe components: - parent: 15 pos: 0.5,17.5 type: Transform - - Anchored: True - type: Physics -- uid: 3438 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3159 type: DisposalPipe components: - parent: 15 pos: -17.5,-16.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3439 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3160 type: DisposalBend components: - parent: 15 pos: -8.5,-15.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3440 + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3161 type: DisposalUnit components: - parent: 15 pos: -29.5,11.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3441 + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3162 type: VendingMachineYouTool components: - parent: 15 pos: -28.5,11.5 rot: -1.5707963267948966 rad type: Transform -- uid: 3442 +- uid: 3163 type: DisposalPipe components: - parent: 15 pos: -28.5,9.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3443 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3164 type: DisposalPipe components: - parent: 15 pos: -28.5,8.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3444 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3165 type: DisposalPipe components: - parent: 15 pos: -28.5,7.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3445 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3166 type: DisposalPipe components: - parent: 15 pos: -28.5,6.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3446 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3167 type: DisposalPipe components: - parent: 15 pos: -28.5,5.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3447 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3168 type: DisposalPipe components: - parent: 15 pos: -16.5,-15.5 type: Transform - - Anchored: True - type: Physics -- uid: 3448 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3169 type: DisposalUnit components: - parent: 15 pos: -17.5,-22.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3449 + - containers: + DisposalUnit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3170 type: DisposalTrunk components: - parent: 15 pos: -17.5,-22.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3450 + - containers: + DisposalEntry: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3171 type: DisposalPipe components: - parent: 15 pos: -17.5,-11.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3451 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3172 type: DisposalPipe components: - parent: 15 pos: -17.5,-12.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3452 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3173 type: DisposalPipe components: - parent: 15 pos: -17.5,-13.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3453 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3174 type: DisposalPipe components: - parent: 15 pos: -17.5,-14.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3454 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3175 type: DisposalJunctionFlipped components: - parent: 15 pos: 3.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3455 + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3176 type: DisposalJunction components: - parent: 15 pos: 2.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3456 + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3177 type: DisposalJunctionFlipped components: - parent: 15 pos: 0.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3457 + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3178 type: DisposalJunctionFlipped components: - parent: 15 pos: -12.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3458 + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3179 type: DisposalJunction components: - parent: 15 pos: -22.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3459 + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3180 type: DisposalJunction components: - parent: 15 pos: -28.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3460 + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3181 type: DisposalJunctionFlipped components: - parent: 15 pos: -27.5,-10.5 type: Transform - - Anchored: True - type: Physics -- uid: 3461 + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3182 type: DisposalYJunction components: - parent: 15 pos: -23.5,-10.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3462 + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3183 type: DisposalJunction components: - parent: 15 pos: -17.5,-15.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3463 + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3184 type: DisposalJunctionFlipped components: - parent: 15 pos: -10.5,-15.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3464 + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3185 type: DisposalJunctionFlipped components: - parent: 15 pos: 2.5,11.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3465 + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3186 type: DisposalJunction components: - parent: 15 pos: 2.5,17.5 rot: -1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3466 + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3187 type: DisposalJunctionFlipped components: - parent: 15 pos: 12.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3467 + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3188 type: DisposalJunction components: - parent: 15 pos: 12.5,-1.5 rot: 1.5707963267948966 rad type: Transform - - Anchored: True - type: Physics -- uid: 3468 + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3189 type: DisposalJunction components: - parent: 15 pos: 24.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3469 + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3190 type: DisposalJunctionFlipped components: - parent: 15 pos: 34.5,3.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3470 + - containers: + DisposalJunction: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3191 type: ConveyorSwitch components: - parent: 15 pos: -23.467268,-14.347846 rot: 3.141592653589793 rad type: Transform - - id: 1 + - conveyors: [] + switches: [] type: ConveyorSwitch -- uid: 3471 +- uid: 3192 type: DisposalPipe components: - parent: 15 pos: 16.5,-1.5 type: Transform - - Anchored: True - type: Physics -- uid: 3472 + - containers: + DisposalTransit: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3193 type: DisposalBend components: - parent: 15 pos: 17.5,-1.5 rot: 3.141592653589793 rad type: Transform - - Anchored: True - type: Physics -- uid: 3473 + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3194 type: DisposalBend components: - parent: 15 pos: 17.5,-0.5 type: Transform - - Anchored: True - type: Physics -- uid: 3474 + - containers: + DisposalBend: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer + - shapes: [] + type: Collidable +- uid: 3195 type: Beaker components: - parent: 15 pos: 18.361881,1.6674205 rot: 3.141592653589793 rad type: Transform -- uid: 3475 + - anchored: False + type: Collidable +- uid: 3196 type: LargeBeaker components: - parent: 15 pos: 18.611881,1.2455455 rot: 3.141592653589793 rad type: Transform -- uid: 3476 + - anchored: False + type: Collidable +- uid: 3197 type: ConveyorBelt components: - parent: 15 pos: -23.5,-13.5 type: Transform -- uid: 3477 +- uid: 3198 type: AirlockMaintCargo components: - parent: 15 diff --git a/Resources/Maps/stationstation.yml b/Resources/Maps/stationstation.yml index 482b8325b1..6446ad62dd 100644 --- a/Resources/Maps/stationstation.yml +++ b/Resources/Maps/stationstation.yml @@ -1,4 +1,4 @@ -meta: +meta: format: 2 name: DemoStation author: Space-Wizards @@ -15,56 +15,58 @@ tilemap: 8: floor_dark 9: floor_elevator_shaft 10: floor_freezer - 11: floor_green_circuit - 12: floor_hull_center0 - 13: floor_hull_center1 - 14: floor_hull_center10 - 15: floor_hull_center11 - 16: floor_hull_center12 - 17: floor_hull_center13 - 18: floor_hull_center14 - 19: floor_hull_center15 - 20: floor_hull_center16 - 21: floor_hull_center17 - 22: floor_hull_center18 - 23: floor_hull_center19 - 24: floor_hull_center2 - 25: floor_hull_center20 - 26: floor_hull_center21 - 27: floor_hull_center22 - 28: floor_hull_center23 - 29: floor_hull_center24 - 30: floor_hull_center25 - 31: floor_hull_center26 - 32: floor_hull_center27 - 33: floor_hull_center28 - 34: floor_hull_center29 - 35: floor_hull_center3 - 36: floor_hull_center30 - 37: floor_hull_center31 - 38: floor_hull_center32 - 39: floor_hull_center33 - 40: floor_hull_center34 - 41: floor_hull_center35 - 42: floor_hull_center4 - 43: floor_hull_center5 - 44: floor_hull_center6 - 45: floor_hull_center7 - 46: floor_hull_center8 - 47: floor_hull_center9 - 48: floor_hydro - 49: floor_lino - 50: floor_mono - 51: floor_reinforced - 52: floor_rock_vault - 53: floor_showroom - 54: floor_steel - 55: floor_steel_dirty - 56: floor_techmaint - 57: floor_white - 58: floor_wood - 59: plating - 60: underplating + 11: floor_gold + 12: floor_green_circuit + 13: floor_hull_center0 + 14: floor_hull_center1 + 15: floor_hull_center10 + 16: floor_hull_center11 + 17: floor_hull_center12 + 18: floor_hull_center13 + 19: floor_hull_center14 + 20: floor_hull_center15 + 21: floor_hull_center16 + 22: floor_hull_center17 + 23: floor_hull_center18 + 24: floor_hull_center19 + 25: floor_hull_center2 + 26: floor_hull_center20 + 27: floor_hull_center21 + 28: floor_hull_center22 + 29: floor_hull_center23 + 30: floor_hull_center24 + 31: floor_hull_center25 + 32: floor_hull_center26 + 33: floor_hull_center27 + 34: floor_hull_center28 + 35: floor_hull_center29 + 36: floor_hull_center3 + 37: floor_hull_center30 + 38: floor_hull_center31 + 39: floor_hull_center32 + 40: floor_hull_center33 + 41: floor_hull_center34 + 42: floor_hull_center35 + 43: floor_hull_center4 + 44: floor_hull_center5 + 45: floor_hull_center6 + 46: floor_hull_center7 + 47: floor_hull_center8 + 48: floor_hull_center9 + 49: floor_hydro + 50: floor_lino + 51: floor_mono + 52: floor_reinforced + 53: floor_rock_vault + 54: floor_showroom + 55: floor_snow + 56: floor_steel + 57: floor_steel_dirty + 58: floor_techmaint + 59: floor_white + 60: floor_wood + 61: plating + 62: underplating grids: - settings: chunksize: 16 @@ -72,29 +74,29 @@ grids: snapsize: 1 chunks: - ind: "-1,0" - tiles: NgAAADYAAAA2AAAANgAAADYAAAA8AAAAPAAAADwAAAA8AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAAPAAAADgAAAA8AAAAPAAAADwAAAA8AAAANgAAADYAAAA2AAAANgAAADwAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA8AAAAPAAAADwAAAA8AAAAPAAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAAAAAAANgAAADYAAAA2AAAAAAAAAAAAAAAAAAAAAAAAADwAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAAAAAAADYAAAA2AAAANgAAAAAAAAAAAAAAAAAAAAAAAAA8AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: OAAAADgAAAA4AAAAOAAAADgAAAA+AAAAPgAAAD4AAAA+AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAPgAAADoAAAA+AAAAPgAAAD4AAAA+AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA+AAAAPgAAAD4AAAA+AAAAPgAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAAAAAAAOAAAADgAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAAAAAADgAAAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "-1,-1" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAPAAAADgAAAA4AAAAOAAAADgAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAADwAAAA4AAAAOAAAADwAAAA4AAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAPAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADYAAAA2AAAANgAAADYAAAA2AAAAPAAAADwAAAA8AAAAPAAAADwAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADwAAAA4AAAAPAAAADwAAAA8AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADwAAAA8AAAAPAAAADwAAAA4AAAAPAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADYAAAA2AAAANgAAADYAAAA2AAAAPAAAADgAAAA8AAAAPAAAADwAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA2AAAANgAAADYAAAA2AAAANgAAADwAAAA4AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAANgAAADYAAAA2AAAANgAAADYAAAA8AAAAOAAAADwAAAA8AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAAPAAAADgAAAA8AAAAPAAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADwAAAA4AAAAPAAAADwAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA8AAAAOAAAADwAAAA8AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAAD4AAAA6AAAAOgAAAD4AAAA6AAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAPgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADgAAAA4AAAAOAAAADgAAAA4AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAD4AAAA6AAAAPgAAAD4AAAA+AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAD4AAAA+AAAAPgAAAD4AAAA6AAAAPgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAADgAAAA4AAAAOAAAADgAAAA4AAAAPgAAADoAAAA+AAAAPgAAAD4AAAA6AAAAOgAAADoAAAA6AAAAOgAAADoAAAA4AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA6AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAOAAAADgAAAA4AAAAOAAAADgAAAA+AAAAOgAAAD4AAAA+AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAPgAAADoAAAA+AAAAPgAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA6AAAAPgAAAD4AAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA+AAAAOgAAAD4AAAA+AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAA== - ind: "-1,1" tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "0,1" - tiles: AAAAADwAAAA2AAAANgAAADwAAAA8AAAAPAAAADwAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA8AAAANgAAAAAAAAA8AAAANgAAADYAAAA8AAAAOAAAADwAAAA8AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAPAAAADkAAAAAAAAAPAAAADYAAAA2AAAAPAAAADgAAAA8AAAAPAAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADwAAAA8AAAAAAAAADwAAAA2AAAANgAAADwAAAA4AAAAPAAAADwAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA8AAAAOQAAAAAAAAA8AAAANgAAADYAAAA8AAAAOAAAADwAAAA4AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAAAAAAAPAAAADYAAAA2AAAAPAAAADgAAAA8AAAAPAAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADwAAAA5AAAAAAAAADwAAAA2AAAANgAAADwAAAA4AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAOQAAAAAAAAA8AAAANgAAADYAAAA8AAAAOAAAADwAAAA4AAAAOAAAADgAAAA8AAAAOAAAADgAAAA8AAAAPAAAADkAAAAAAAAAPAAAADYAAAA2AAAAPAAAADgAAAA8AAAAOAAAADgAAAA4AAAAPAAAADgAAAA4AAAAPAAAADkAAAA5AAAAAAAAAAAAAAAAAAAAAAAAADwAAAA4AAAAPAAAADgAAAA4AAAAOAAAADwAAAA4AAAAOAAAADwAAAA8AAAAOQAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAOAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADkAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADgAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA5AAAAAAAAAAAAAAAAAAAAAAAAADwAAAA4AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAD4AAAA4AAAAOAAAAD4AAAA+AAAAPgAAAD4AAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA+AAAAOAAAAAAAAAA+AAAAOAAAADgAAAA+AAAAOgAAAD4AAAA+AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAPgAAADsAAAAAAAAAPgAAADgAAAA4AAAAPgAAADoAAAA+AAAAPgAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAD4AAAA+AAAAAAAAAD4AAAA4AAAAOAAAAD4AAAA6AAAAPgAAAD4AAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA+AAAAOwAAAAAAAAA+AAAAOAAAADgAAAA+AAAAOgAAAD4AAAA6AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAAAAAAAPgAAADgAAAA4AAAAPgAAADoAAAA+AAAAPgAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAD4AAAA7AAAAAAAAAD4AAAA4AAAAOAAAAD4AAAA6AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAOwAAAAAAAAA+AAAAOAAAADgAAAA+AAAAOgAAAD4AAAA6AAAAOgAAADoAAAA+AAAAOgAAADoAAAA+AAAAPgAAADsAAAAAAAAAPgAAADgAAAA4AAAAPgAAADoAAAA+AAAAOgAAADoAAAA6AAAAPgAAADoAAAA6AAAAPgAAADsAAAA7AAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA6AAAAPgAAADoAAAA6AAAAOgAAAD4AAAA6AAAAOgAAAD4AAAA+AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAOgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAADsAAAAAAAAAAAAAAAAAAAAAAAAAPgAAADoAAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA7AAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA6AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "0,0" - tiles: NgAAADwAAAA2AAAANgAAADwAAAA4AAAAOAAAADgAAAA8AAAAAAAAAAAAAAAAAAAAPAAAADkAAAA5AAAAOQAAADwAAAA8AAAANgAAADYAAAA8AAAAOAAAADgAAAA4AAAAPAAAAAAAAAAAAAAAAAAAADwAAAA5AAAAOQAAADkAAAA2AAAANgAAADYAAAA2AAAAPAAAADwAAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAAA8AAAAOQAAADkAAAA5AAAANgAAADYAAAA2AAAANgAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAOQAAADYAAAA2AAAANgAAADYAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAOQAAADkAAAA2AAAANgAAADYAAAA2AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADkAAAA5AAAANgAAADYAAAA2AAAANgAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA5AAAAOQAAADYAAAA2AAAANgAAADYAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAOQAAADkAAAA8AAAAPAAAADYAAAA2AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADkAAAA5AAAAPAAAADwAAAA2AAAANgAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA5AAAAOQAAADwAAAA4AAAANgAAADYAAAA4AAAAPAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADwAAAA4AAAAOQAAADkAAAA8AAAAPAAAADYAAAA2AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA2AAAAAAAAADwAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAAAAAAAA8AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAAAAAAAPAAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAAAAAAADwAAAA2AAAANgAAADwAAAA4AAAAPAAAADwAAAA8AAAAOQAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAA== + tiles: OAAAAD4AAAA4AAAAOAAAAD4AAAA6AAAAOgAAADoAAAA+AAAAAAAAAAAAAAAAAAAAPgAAADsAAAA7AAAAOwAAAD4AAAA+AAAAOAAAADgAAAA+AAAAOgAAADoAAAA6AAAAPgAAAAAAAAAAAAAAAAAAAD4AAAA7AAAAOwAAADsAAAA4AAAAOAAAADgAAAA4AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAA+AAAAOwAAADsAAAA7AAAAOAAAADgAAAA4AAAAOAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAOwAAADgAAAA4AAAAOAAAADgAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAOwAAADsAAAA4AAAAOAAAADgAAAA4AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAADsAAAA7AAAAOAAAADgAAAA4AAAAOAAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA7AAAAOwAAADgAAAA4AAAAOAAAADgAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAOwAAADsAAAA+AAAAPgAAADgAAAA4AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAADsAAAA7AAAAPgAAAD4AAAA4AAAAOAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA7AAAAOwAAAD4AAAA6AAAAOAAAADgAAAA6AAAAPgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAD4AAAA6AAAAOwAAADsAAAA+AAAAPgAAADgAAAA4AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA4AAAAAAAAAD4AAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAAAAAAAA+AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAAAAAAAPgAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAAAAAAD4AAAA4AAAAOAAAAD4AAAA6AAAAPgAAAD4AAAA+AAAAOwAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAA== - ind: "0,-1" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAOAAAADgAAAA4AAAAPAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADwAAAA4AAAAOAAAADwAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAOAAAADgAAAA4AAAAPAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAA4AAAAOAAAADwAAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAA4AAAAOAAAADgAAAA8AAAAOAAAADgAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAOAAAADgAAAA4AAAAOAAAADwAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADwAAAA8AAAAPAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAOQAAADkAAAA8AAAAPAAAADgAAAA4AAAAPAAAADwAAAA8AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADkAAAA5AAAANgAAADwAAAA2AAAANgAAADwAAAA4AAAAOAAAADgAAAA8AAAAAAAAAAAAAAAAAAAAAAAAADwAAAA5AAAAOQAAADYAAAA2AAAANgAAADYAAAA8AAAAOAAAADgAAAA4AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAA8AAAAOQAAADkAAAA2AAAANgAAADYAAAA2AAAAPAAAADgAAAA4AAAAOAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADkAAAA5AAAANgAAADYAAAA2AAAANgAAADwAAAA4AAAAOAAAADgAAAA8AAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAOQAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAAD4AAAA6AAAAOgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADoAAAA6AAAAOgAAADoAAAA+AAAAOgAAADoAAAA6AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA6AAAAOgAAADoAAAA6AAAAOgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOgAAADoAAAA6AAAAOgAAADoAAAA6AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA+AAAAPgAAADoAAAA6AAAAOgAAADoAAAA6AAAAOgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAOwAAADsAAAA+AAAAPgAAADoAAAA6AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAPgAAADsAAAA7AAAAOAAAAD4AAAA4AAAAOAAAAD4AAAA6AAAAOgAAADoAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAD4AAAA7AAAAOwAAADgAAAA4AAAAOAAAADgAAAA+AAAAOgAAADoAAAA6AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAA+AAAAOwAAADsAAAA4AAAAOAAAADgAAAA4AAAAPgAAADoAAAA6AAAAOgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAPgAAADsAAAA7AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA6AAAAOgAAADoAAAA+AAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAOwAAAA== - ind: "1,-1" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA8AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAPAAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA8AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAPAAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADkAAAA5AAAAPAAAADwAAAA8AAAAOQAAADwAAAA8AAAAPAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA+AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAPgAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA+AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAPgAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAADsAAAA7AAAAPgAAAD4AAAA+AAAAOwAAAD4AAAA+AAAAPgAAAA== - ind: "-2,0" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "-2,-1" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAA== - ind: "1,0" - tiles: OQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA8AAAAAAAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAPAAAAAAAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADwAAAAAAAAAOQAAADwAAAA8AAAAPAAAADkAAAA8AAAAPAAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA8AAAAAAAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADwAAAA8AAAAOQAAADwAAAA5AAAAPAAAADwAAAA8AAAAPAAAAAAAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA8AAAAOQAAADkAAAA5AAAAOQAAADkAAAA8AAAAAAAAAAAAAAAAAAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAPAAAADkAAAA5AAAAOQAAADkAAAA5AAAAPAAAAAAAAAAAAAAAAAAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADwAAAA5AAAAOQAAADkAAAA5AAAAOQAAADwAAAAAAAAAAAAAAAAAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADkAAAA8AAAAAAAAAAAAAAAAAAAAOQAAADkAAAA5AAAAOQAAADkAAAA5AAAAPAAAADkAAAA5AAAAOQAAADkAAAA5AAAAPAAAAAAAAAAAAAAAAAAAADkAAAA5AAAAOQAAADkAAAA5AAAAOQAAADwAAAA5AAAAOQAAADkAAAA5AAAAOQAAADwAAAAAAAAAAAAAAAAAAAA2AAAANgAAADYAAAA2AAAANgAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAAAAAAAAAAAAAAAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAANgAAADYAAAA2AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANgAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAADwAAAA8AAAAPAAAAAAAAAAAAAAAAAAAAA== + tiles: OwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA+AAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAPgAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAD4AAAAAAAAAOwAAAD4AAAA+AAAAPgAAADsAAAA+AAAAPgAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA+AAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAD4AAAA+AAAAOwAAAD4AAAA7AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA+AAAAOwAAADsAAAA7AAAAOwAAADsAAAA+AAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAPgAAADsAAAA7AAAAOwAAADsAAAA7AAAAPgAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAD4AAAA7AAAAOwAAADsAAAA7AAAAOwAAAD4AAAAAAAAAAAAAAAAAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAADsAAAA+AAAAAAAAAAAAAAAAAAAAOwAAADsAAAA7AAAAOwAAADsAAAA7AAAAPgAAADsAAAA7AAAAOwAAADsAAAA7AAAAPgAAAAAAAAAAAAAAAAAAADsAAAA7AAAAOwAAADsAAAA7AAAAOwAAAD4AAAA7AAAAOwAAADsAAAA7AAAAOwAAAD4AAAAAAAAAAAAAAAAAAAA4AAAAOAAAADgAAAA4AAAAOAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAOAAAADgAAAA4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAD4AAAA+AAAAPgAAAAAAAAAAAAAAAAAAAA== - ind: "2,-1" - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADkAAAA5AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA5AAAAOQAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAADkAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADkAAAA5AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA5AAAAOQAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAADwAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAD4AAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== - ind: "1,1" - tiles: NgAAADYAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADkAAAA5AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA5AAAAPAAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAADkAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADkAAAA5AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA5AAAAOQAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAADkAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADkAAAA5AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA5AAAAOQAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAADkAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADkAAAA5AAAAPAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA5AAAAOQAAADwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAADkAAAA8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== + tiles: OAAAADgAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAPgAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADsAAAA7AAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA7AAAAOwAAAD4AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAADsAAAA+AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA== entities: - uid: 0 components: @@ -111,6 +113,14 @@ entities: type: Transform - startingCharge: 1000 type: PowerCell + - containers: + BatteryBarrel-powercell-container: + entities: + - 969 + type: Content.Server.GameObjects.ContainerSlot + BatteryBarrel-ammo-container: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 2 type: LaserGun components: @@ -120,6 +130,14 @@ entities: type: Transform - startingCharge: 1000 type: PowerCell + - containers: + BatteryBarrel-powercell-container: + entities: + - 970 + type: Content.Server.GameObjects.ContainerSlot + BatteryBarrel-ammo-container: + type: Content.Server.GameObjects.ContainerSlot + type: ContainerContainer - uid: 3 type: Brutepack components: @@ -314,12 +332,6 @@ entities: pos: 8.5,-8.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 29 type: PoweredSmallLight components: @@ -347,12 +359,6 @@ entities: pos: -6.5,-11.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 32 type: solid_wall components: @@ -773,14 +779,14 @@ entities: pos: 5.5,-6.5 rot: -1.5707963267949 rad type: Transform + - IsPlaceable: False + type: PlaceableSurface - containers: storagebase: type: Robust.Server.GameObjects.Components.Container.Container EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - - IsPlaceable: False - type: PlaceableSurface - uid: 92 type: Wire components: @@ -788,12 +794,6 @@ entities: pos: -6.5,-6.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 93 type: Wire components: @@ -801,12 +801,6 @@ entities: pos: -7.5,-6.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 94 type: Wire components: @@ -814,12 +808,6 @@ entities: pos: -8.5,-6.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 95 type: Wire components: @@ -827,12 +815,6 @@ entities: pos: -8.5,-5.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 96 type: Wire components: @@ -840,12 +822,6 @@ entities: pos: -8.5,-4.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 97 type: Wire components: @@ -853,12 +829,6 @@ entities: pos: -8.5,-3.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 98 type: Wire components: @@ -866,12 +836,6 @@ entities: pos: -8.5,-2.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 99 type: Wire components: @@ -879,12 +843,6 @@ entities: pos: -8.5,-1.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 100 type: Wire components: @@ -892,12 +850,6 @@ entities: pos: -6.5,-7.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 101 type: Wire components: @@ -905,12 +857,6 @@ entities: pos: -6.5,-8.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 102 type: Wire components: @@ -918,12 +864,6 @@ entities: pos: -6.5,-9.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 103 type: Wire components: @@ -931,12 +871,6 @@ entities: pos: -6.5,-10.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 104 type: Wire components: @@ -944,12 +878,6 @@ entities: pos: 4.5,-8.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 105 type: Wire components: @@ -957,12 +885,6 @@ entities: pos: 4.5,-9.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 106 type: Wire components: @@ -970,12 +892,6 @@ entities: pos: 4.5,-10.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 107 type: Wire components: @@ -983,12 +899,6 @@ entities: pos: 4.5,-11.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 108 type: Wire components: @@ -996,12 +906,6 @@ entities: pos: 5.5,-8.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 109 type: Wire components: @@ -1009,12 +913,6 @@ entities: pos: 6.5,-8.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 110 type: Wire components: @@ -1022,12 +920,6 @@ entities: pos: 7.5,-8.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 111 type: Catwalk components: @@ -1049,12 +941,6 @@ entities: pos: 3.5,-11.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 114 type: Wire components: @@ -1062,12 +948,6 @@ entities: pos: 2.5,-11.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 115 type: Wire components: @@ -1075,12 +955,6 @@ entities: pos: 1.5,-11.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 116 type: Wire components: @@ -1088,12 +962,6 @@ entities: pos: 0.5,-11.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 117 type: Wire components: @@ -1101,12 +969,6 @@ entities: pos: -0.5,-11.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 118 type: Wire components: @@ -1114,12 +976,6 @@ entities: pos: -1.5,-11.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 119 type: Wire components: @@ -1127,12 +983,6 @@ entities: pos: -2.5,-11.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 120 type: Wire components: @@ -1140,12 +990,6 @@ entities: pos: -3.5,-11.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 121 type: Wire components: @@ -1153,12 +997,6 @@ entities: pos: -4.5,-11.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 122 type: Wire components: @@ -1166,12 +1004,6 @@ entities: pos: -5.5,-11.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 123 type: Wire components: @@ -1179,12 +1011,6 @@ entities: pos: 1.5,-12.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 124 type: Wire components: @@ -1192,12 +1018,6 @@ entities: pos: 1.5,-13.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 125 type: Wire components: @@ -1205,12 +1025,6 @@ entities: pos: 2.5,-13.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 126 type: Wire components: @@ -1218,12 +1032,6 @@ entities: pos: -2.5,-12.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 127 type: Wire components: @@ -1231,12 +1039,6 @@ entities: pos: -2.5,-13.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 128 type: Wire components: @@ -1244,12 +1046,6 @@ entities: pos: -3.5,-13.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 129 type: Wire components: @@ -1257,12 +1053,6 @@ entities: pos: -1.5,-13.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 130 type: Generator components: @@ -1270,10 +1060,6 @@ entities: pos: 2.5,-13.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - type: NodeContainer - uid: 131 type: Generator components: @@ -1281,10 +1067,6 @@ entities: pos: 1.5,-13.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - type: NodeContainer - uid: 132 type: SmesDry components: @@ -1294,10 +1076,6 @@ entities: type: Transform - supplyRate: 1000 type: PowerSupplier - - nodeTypes: - HVPower: - - AdjacentNode - type: NodeContainer - uid: 133 type: SmesDry components: @@ -1307,10 +1085,6 @@ entities: type: Transform - supplyRate: 1000 type: PowerSupplier - - nodeTypes: - HVPower: - - AdjacentNode - type: NodeContainer - uid: 134 type: SmesDry components: @@ -1320,10 +1094,6 @@ entities: type: Transform - supplyRate: 1000 type: PowerSupplier - - nodeTypes: - HVPower: - - AdjacentNode - type: NodeContainer - uid: 135 type: Multitool components: @@ -1415,6 +1185,8 @@ entities: pos: 1.5,-10.5 rot: -1.5707963267949 rad type: Transform + - IsPlaceable: False + type: PlaceableSurface - containers: storagebase: type: Robust.Server.GameObjects.Components.Container.Container @@ -1423,8 +1195,6 @@ entities: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - - IsPlaceable: False - type: PlaceableSurface - uid: 148 type: MedkitFilled components: @@ -1454,6 +1224,8 @@ entities: pos: 0.5,-10.5 rot: -1.5707963267949 rad type: Transform + - IsPlaceable: False + type: PlaceableSurface - containers: storagebase: type: Robust.Server.GameObjects.Components.Container.Container @@ -1462,8 +1234,6 @@ entities: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - - IsPlaceable: False - type: PlaceableSurface - uid: 151 type: FireExtinguisher components: @@ -1565,12 +1335,6 @@ entities: pos: -6.5,-12.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 164 type: Wire components: @@ -1578,12 +1342,6 @@ entities: pos: -6.5,-13.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 165 type: Wire components: @@ -1591,12 +1349,6 @@ entities: pos: 5.5,-11.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 166 type: Wire components: @@ -1604,12 +1356,6 @@ entities: pos: 5.5,-12.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 167 type: Wire components: @@ -1617,12 +1363,6 @@ entities: pos: 5.5,-13.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 168 type: WiredMachine components: @@ -1630,10 +1370,6 @@ entities: pos: 5.5,-13.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - type: NodeContainer - uid: 169 type: WiredMachine components: @@ -1641,10 +1377,6 @@ entities: pos: -6.5,-13.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - type: NodeContainer - uid: 170 type: LightBulb components: @@ -1734,8 +1466,6 @@ entities: pos: -11.5,-0.5 rot: -1.5707963267949 rad type: Transform - - sprite: Constructible/Power/VendingMachines/youtool.rsi - type: Sprite - uid: 183 type: Generator components: @@ -1743,10 +1473,6 @@ entities: pos: 0.5,-13.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - type: NodeContainer - uid: 184 type: Wire components: @@ -1754,12 +1480,6 @@ entities: pos: 3.5,-13.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 185 type: Wire components: @@ -1767,12 +1487,6 @@ entities: pos: 0.5,-13.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 186 type: Generator components: @@ -1780,10 +1494,6 @@ entities: pos: 3.5,-13.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - type: NodeContainer - uid: 187 type: Table components: @@ -1910,12 +1620,6 @@ entities: pos: -8.5,-0.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 205 type: Wire components: @@ -1923,12 +1627,6 @@ entities: pos: -8.5,0.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 206 type: Wire components: @@ -1936,12 +1634,6 @@ entities: pos: -9.5,0.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 207 type: Wire components: @@ -1949,12 +1641,6 @@ entities: pos: -9.5,1.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 208 type: solid_wall components: @@ -2079,12 +1765,6 @@ entities: pos: -6.5,-7.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 224 type: Wire components: @@ -2092,12 +1772,6 @@ entities: pos: -9.5,2.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 225 type: Wire components: @@ -2105,12 +1779,6 @@ entities: pos: -9.5,3.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 226 type: Wire components: @@ -2118,12 +1786,6 @@ entities: pos: -8.5,3.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 227 type: Wire components: @@ -2131,12 +1793,6 @@ entities: pos: -7.5,3.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 228 type: Wire components: @@ -2144,12 +1800,6 @@ entities: pos: -6.5,3.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 229 type: Wire components: @@ -2157,12 +1807,6 @@ entities: pos: -5.5,3.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 230 type: Wire components: @@ -2170,12 +1814,6 @@ entities: pos: -4.5,3.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 231 type: Wire components: @@ -2183,12 +1821,6 @@ entities: pos: -3.5,3.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 232 type: Wire components: @@ -2196,12 +1828,6 @@ entities: pos: -2.5,3.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 233 type: Wire components: @@ -2209,12 +1835,6 @@ entities: pos: -1.5,3.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 234 type: Wire components: @@ -2222,12 +1842,6 @@ entities: pos: -0.5,3.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 235 type: Wire components: @@ -2235,12 +1849,6 @@ entities: pos: 0.5,3.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 236 type: LargeBeaker components: @@ -2346,12 +1954,6 @@ entities: pos: 4.5,-9.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 251 type: PoweredSmallLight components: @@ -2477,6 +2079,8 @@ entities: - containers: magazine_bullet_container: type: Robust.Server.GameObjects.Components.Container.Container + RangedMagazine-magazine: + type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 264 type: MagazinePistolSmg @@ -2488,6 +2092,8 @@ entities: - containers: magazine_bullet_container: type: Robust.Server.GameObjects.Components.Container.Container + RangedMagazine-magazine: + type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 265 type: MagazinePistolSmg @@ -2499,6 +2105,8 @@ entities: - containers: magazine_bullet_container: type: Robust.Server.GameObjects.Components.Container.Container + RangedMagazine-magazine: + type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - uid: 266 type: BackpackClothing @@ -2541,6 +2149,12 @@ entities: type: Content.Server.GameObjects.ContainerSlot ballistic_gun_magazine: type: Content.Server.GameObjects.ContainerSlot + MagazineBarrel-chamber: + type: Content.Server.GameObjects.ContainerSlot + MagazineBarrel-magazine: + entities: + - 971 + type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 270 type: SmgC20r @@ -2554,6 +2168,12 @@ entities: type: Content.Server.GameObjects.ContainerSlot ballistic_gun_magazine: type: Content.Server.GameObjects.ContainerSlot + MagazineBarrel-chamber: + type: Content.Server.GameObjects.ContainerSlot + MagazineBarrel-magazine: + entities: + - 972 + type: Content.Server.GameObjects.ContainerSlot type: ContainerContainer - uid: 271 type: solid_wall @@ -2674,12 +2294,12 @@ entities: pos: 13.5,21.5 rot: -1.5707963267948966 rad type: Transform + - IsPlaceable: False + type: PlaceableSurface - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - - IsPlaceable: False - type: PlaceableSurface - uid: 288 type: solid_wall components: @@ -3187,12 +2807,6 @@ entities: pos: -9.5,4.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 358 type: Wire components: @@ -3200,12 +2814,6 @@ entities: pos: -13.5,-7.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 359 type: Wire components: @@ -3213,12 +2821,6 @@ entities: pos: -9.5,3.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 360 type: Table components: @@ -3254,12 +2856,12 @@ entities: pos: -11.5,-5.5 rot: -1.5707963267949 rad type: Transform + - IsPlaceable: False + type: PlaceableSurface - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - - IsPlaceable: False - type: PlaceableSurface - uid: 365 type: LockerToolFilled components: @@ -3267,12 +2869,12 @@ entities: pos: -11.5,-4.5 rot: -1.5707963267949 rad type: Transform + - IsPlaceable: False + type: PlaceableSurface - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - - IsPlaceable: False - type: PlaceableSurface - uid: 366 type: LockerToolFilled components: @@ -3280,12 +2882,12 @@ entities: pos: -11.5,-3.5 rot: -1.5707963267949 rad type: Transform + - IsPlaceable: False + type: PlaceableSurface - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - - IsPlaceable: False - type: PlaceableSurface - uid: 367 type: LockerToolFilled components: @@ -3293,12 +2895,12 @@ entities: pos: -11.5,-2.5 rot: -1.5707963267949 rad type: Transform + - IsPlaceable: False + type: PlaceableSurface - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - - IsPlaceable: False - type: PlaceableSurface - uid: 368 type: LockerToolFilled components: @@ -3306,12 +2908,12 @@ entities: pos: -11.5,-1.5 rot: -1.5707963267949 rad type: Transform + - IsPlaceable: False + type: PlaceableSurface - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - - IsPlaceable: False - type: PlaceableSurface - uid: 369 type: GlassStack components: @@ -3485,12 +3087,6 @@ entities: pos: -14.5,-7.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 389 type: Wire components: @@ -3498,12 +3094,6 @@ entities: pos: -12.5,-7.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 390 type: Catwalk components: @@ -3559,12 +3149,6 @@ entities: pos: -9.5,4.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 397 type: APC components: @@ -3572,12 +3156,6 @@ entities: pos: -16.5,-2.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 398 type: Wire components: @@ -3585,12 +3163,6 @@ entities: pos: -16.5,-2.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 399 type: Wire components: @@ -3598,12 +3170,6 @@ entities: pos: -15.5,-2.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 400 type: Wire components: @@ -3611,12 +3177,6 @@ entities: pos: -14.5,-2.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 401 type: Wire components: @@ -3624,12 +3184,6 @@ entities: pos: -13.5,-2.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 402 type: Wire components: @@ -3637,12 +3191,6 @@ entities: pos: -13.5,-3.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 403 type: Wire components: @@ -3650,12 +3198,6 @@ entities: pos: -13.5,-4.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 404 type: Wire components: @@ -3663,12 +3205,6 @@ entities: pos: -13.5,-5.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 405 type: Wire components: @@ -3676,12 +3212,6 @@ entities: pos: -13.5,-6.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 406 type: Wire components: @@ -3689,12 +3219,6 @@ entities: pos: -12.5,-6.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 407 type: Wire components: @@ -3702,12 +3226,6 @@ entities: pos: -11.5,-6.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 408 type: Wire components: @@ -3715,12 +3233,6 @@ entities: pos: -10.5,-6.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 409 type: Wire components: @@ -3728,12 +3240,6 @@ entities: pos: -9.5,-6.5 rot: -1.5707963267949 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 410 type: Table components: @@ -3797,8 +3303,6 @@ entities: pos: -11.5,0.5 rot: -1.5707963267949 rad type: Transform - - sprite: Constructible/Power/VendingMachines/engivend.rsi - type: Sprite - uid: 419 type: Table components: @@ -5039,12 +4543,6 @@ entities: pos: 1.5,3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 595 type: Wire components: @@ -5052,12 +4550,6 @@ entities: pos: 2.5,3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 596 type: Wire components: @@ -5065,12 +4557,6 @@ entities: pos: 2.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 597 type: Wire components: @@ -5078,12 +4564,6 @@ entities: pos: 2.5,5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 598 type: Wire components: @@ -5091,12 +4571,6 @@ entities: pos: 2.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 599 type: Wire components: @@ -5104,12 +4578,6 @@ entities: pos: 2.5,6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 600 type: Wire components: @@ -5117,12 +4585,6 @@ entities: pos: 2.5,7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 601 type: Wire components: @@ -5130,12 +4592,6 @@ entities: pos: 2.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 602 type: Wire components: @@ -5143,12 +4599,6 @@ entities: pos: 2.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 603 type: Wire components: @@ -5156,12 +4606,6 @@ entities: pos: 3.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 604 type: Wire components: @@ -5169,12 +4613,6 @@ entities: pos: 4.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 605 type: Wire components: @@ -5182,12 +4620,6 @@ entities: pos: 5.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 606 type: Wire components: @@ -5195,12 +4627,6 @@ entities: pos: 5.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 607 type: Wire components: @@ -5208,12 +4634,6 @@ entities: pos: 6.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 608 type: Wire components: @@ -5221,12 +4641,6 @@ entities: pos: 7.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 609 type: Wire components: @@ -5234,12 +4648,6 @@ entities: pos: 8.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 610 type: Wire components: @@ -5247,12 +4655,6 @@ entities: pos: 9.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 611 type: Wire components: @@ -5260,12 +4662,6 @@ entities: pos: 10.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 612 type: Wire components: @@ -5273,12 +4669,6 @@ entities: pos: 11.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 613 type: Wire components: @@ -5286,12 +4676,6 @@ entities: pos: 12.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 614 type: Wire components: @@ -5299,12 +4683,6 @@ entities: pos: 12.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 615 type: Wire components: @@ -5312,12 +4690,6 @@ entities: pos: 13.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 616 type: Wire components: @@ -5325,12 +4697,6 @@ entities: pos: 14.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 617 type: Wire components: @@ -5338,12 +4704,6 @@ entities: pos: 15.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 618 type: Wire components: @@ -5351,12 +4711,6 @@ entities: pos: 16.5,10.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 619 type: Wire components: @@ -5364,12 +4718,6 @@ entities: pos: 16.5,9.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 620 type: Wire components: @@ -5377,12 +4725,6 @@ entities: pos: 16.5,8.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 621 type: Wire components: @@ -5390,12 +4732,6 @@ entities: pos: 16.5,7.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 622 type: Wire components: @@ -5403,12 +4739,6 @@ entities: pos: 16.5,6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 623 type: Wire components: @@ -5416,12 +4746,6 @@ entities: pos: 16.5,5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 624 type: Wire components: @@ -5429,12 +4753,6 @@ entities: pos: 16.5,4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 625 type: Wire components: @@ -5442,12 +4760,6 @@ entities: pos: 16.5,3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 626 type: Wire components: @@ -5455,12 +4767,6 @@ entities: pos: 16.5,2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 627 type: Wire components: @@ -5468,12 +4774,6 @@ entities: pos: 17.5,2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 628 type: Wire components: @@ -5481,12 +4781,6 @@ entities: pos: 18.5,2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 629 type: Wire components: @@ -5494,12 +4788,6 @@ entities: pos: 18.5,3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 630 type: APC components: @@ -5507,12 +4795,6 @@ entities: pos: 18.5,3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 631 type: Wire components: @@ -5520,12 +4802,6 @@ entities: pos: 1.5,2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 632 type: Wire components: @@ -5533,12 +4809,6 @@ entities: pos: 1.5,1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 633 type: APC components: @@ -5546,12 +4816,6 @@ entities: pos: 1.5,1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 634 type: Airlock components: @@ -5579,48 +4843,24 @@ entities: - parent: 0 pos: 13.5,6.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 638 type: Wire components: - parent: 0 pos: 13.5,6.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 639 type: APC components: - parent: 0 pos: 28.5,8.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 640 type: Wire components: - parent: 0 pos: 25.5,4.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 641 type: Poweredlight components: @@ -5688,12 +4928,6 @@ entities: pos: 27.5,8.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 648 type: Wire components: @@ -5701,72 +4935,36 @@ entities: pos: 26.5,8.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 649 type: Wire components: - parent: 0 pos: 15.5,8.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 650 type: Wire components: - parent: 0 pos: 14.5,8.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 651 type: Wire components: - parent: 0 pos: 13.5,8.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 652 type: Wire components: - parent: 0 pos: 15.5,6.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 653 type: Wire components: - parent: 0 pos: 14.5,6.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 654 type: APC components: @@ -5774,108 +4972,54 @@ entities: pos: 30.5,2.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 655 type: Wire components: - parent: 0 pos: 19.5,2.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 656 type: Wire components: - parent: 0 pos: 20.5,2.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 657 type: Wire components: - parent: 0 pos: 21.5,2.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 658 type: Wire components: - parent: 0 pos: 22.5,2.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 659 type: Wire components: - parent: 0 pos: 23.5,2.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 660 type: Wire components: - parent: 0 pos: 24.5,2.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 661 type: Wire components: - parent: 0 pos: 25.5,2.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 662 type: Wire components: - parent: 0 pos: 25.5,3.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 663 type: Poweredlight components: @@ -5922,12 +5066,6 @@ entities: pos: 30.5,2.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 668 type: Wire components: @@ -5935,12 +5073,6 @@ entities: pos: 29.5,2.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 669 type: Poweredlight components: @@ -5982,12 +5114,6 @@ entities: pos: 20.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 674 type: Wire components: @@ -5995,12 +5121,6 @@ entities: pos: 16.5,1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 675 type: Wire components: @@ -6008,12 +5128,6 @@ entities: pos: 16.5,0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 676 type: Wire components: @@ -6021,12 +5135,6 @@ entities: pos: 16.5,-0.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 677 type: Wire components: @@ -6034,12 +5142,6 @@ entities: pos: 16.5,-1.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 678 type: Wire components: @@ -6047,12 +5149,6 @@ entities: pos: 16.5,-2.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 679 type: Wire components: @@ -6060,12 +5156,6 @@ entities: pos: 16.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 680 type: Wire components: @@ -6073,12 +5163,6 @@ entities: pos: 17.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 681 type: Wire components: @@ -6086,12 +5170,6 @@ entities: pos: 18.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 682 type: Wire components: @@ -6099,12 +5177,6 @@ entities: pos: 19.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 683 type: Wire components: @@ -6112,12 +5184,6 @@ entities: pos: 20.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 684 type: Wire components: @@ -6125,12 +5191,6 @@ entities: pos: 20.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 685 type: Wire components: @@ -6138,12 +5198,6 @@ entities: pos: 20.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 686 type: Wire components: @@ -6151,12 +5205,6 @@ entities: pos: 20.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 687 type: Wire components: @@ -6164,12 +5212,6 @@ entities: pos: 21.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 688 type: Wire components: @@ -6177,12 +5219,6 @@ entities: pos: 22.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 689 type: Wire components: @@ -6190,12 +5226,6 @@ entities: pos: 23.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 690 type: Wire components: @@ -6203,12 +5233,6 @@ entities: pos: 24.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 691 type: Wire components: @@ -6216,12 +5240,6 @@ entities: pos: 25.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 692 type: Wire components: @@ -6229,12 +5247,6 @@ entities: pos: 26.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 693 type: Wire components: @@ -6242,12 +5254,6 @@ entities: pos: 27.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 694 type: Wire components: @@ -6255,12 +5261,6 @@ entities: pos: 28.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 695 type: Wire components: @@ -6268,12 +5268,6 @@ entities: pos: 29.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 696 type: Wire components: @@ -6281,12 +5275,6 @@ entities: pos: 30.5,-3.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 697 type: Wire components: @@ -6294,12 +5282,6 @@ entities: pos: 30.5,-4.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 698 type: Wire components: @@ -6307,12 +5289,6 @@ entities: pos: 30.5,-5.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 699 type: Wire components: @@ -6320,12 +5296,6 @@ entities: pos: 30.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 700 type: APC components: @@ -6333,12 +5303,6 @@ entities: pos: 30.5,-6.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 701 type: Poweredlight components: @@ -6386,12 +5350,6 @@ entities: pos: 26.5,2.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 706 type: Wire components: @@ -6399,12 +5357,6 @@ entities: pos: 27.5,2.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 707 type: Wire components: @@ -6412,12 +5364,6 @@ entities: pos: 28.5,2.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 708 type: Wire components: @@ -6425,12 +5371,6 @@ entities: pos: 28.5,8.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 709 type: Wire components: @@ -6438,12 +5378,6 @@ entities: pos: 25.5,5.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 710 type: Wire components: @@ -6451,12 +5385,6 @@ entities: pos: 25.5,6.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 711 type: Wire components: @@ -6464,12 +5392,6 @@ entities: pos: 25.5,7.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 712 type: Wire components: @@ -6477,12 +5399,6 @@ entities: pos: 25.5,8.5 rot: 3.141592653589793 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 713 type: Poweredlight components: @@ -6510,8 +5426,6 @@ entities: pos: 29.5,3.5 rot: 3.141592653589793 rad type: Transform - - sprite: Constructible/Power/VendingMachines/medical.rsi - type: Sprite - uid: 716 type: VendingMachineMedical components: @@ -6519,8 +5433,6 @@ entities: pos: 27.5,-5.5 rot: 3.141592653589793 rad type: Transform - - sprite: Constructible/Power/VendingMachines/medical.rsi - type: Sprite - uid: 717 type: VendingMachineMedical components: @@ -6528,8 +5440,6 @@ entities: pos: 25.5,-5.5 rot: 3.141592653589793 rad type: Transform - - sprite: Constructible/Power/VendingMachines/medical.rsi - type: Sprite - uid: 718 type: VendingMachineWallMedical components: @@ -6537,8 +5447,6 @@ entities: pos: 1.5,-3.5 rot: 3.141592653589793 rad type: Transform - - sprite: Constructible/Power/VendingMachines/wallmed.rsi - type: Sprite - uid: 719 type: MedkitFilled components: @@ -6728,12 +5636,12 @@ entities: pos: 32.5,-1.5 rot: -1.5707963267948966 rad type: Transform + - IsPlaceable: False + type: PlaceableSurface - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - - IsPlaceable: False - type: PlaceableSurface - uid: 744 type: CrateMedical components: @@ -6741,12 +5649,12 @@ entities: pos: 31.5,-1.5 rot: -1.5707963267948966 rad type: Transform + - IsPlaceable: False + type: PlaceableSurface - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - - IsPlaceable: False - type: PlaceableSurface - uid: 745 type: LockerMedical components: @@ -6754,12 +5662,12 @@ entities: pos: 30.5,-1.5 rot: -1.5707963267948966 rad type: Transform + - IsPlaceable: False + type: PlaceableSurface - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - - IsPlaceable: False - type: PlaceableSurface - uid: 746 type: LockerMedical components: @@ -6767,12 +5675,12 @@ entities: pos: 29.5,-1.5 rot: -1.5707963267948966 rad type: Transform + - IsPlaceable: False + type: PlaceableSurface - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - - IsPlaceable: False - type: PlaceableSurface - uid: 747 type: LockerMedical components: @@ -6780,12 +5688,12 @@ entities: pos: 27.5,5.5 rot: -1.5707963267948966 rad type: Transform + - IsPlaceable: False + type: PlaceableSurface - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - - IsPlaceable: False - type: PlaceableSurface - uid: 748 type: LockerChemistry components: @@ -6793,12 +5701,12 @@ entities: pos: 27.5,6.5 rot: -1.5707963267948966 rad type: Transform + - IsPlaceable: False + type: PlaceableSurface - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - - IsPlaceable: False - type: PlaceableSurface - uid: 749 type: solid_wall components: @@ -7485,12 +6393,6 @@ entities: pos: 2.5,11.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 847 type: Wire components: @@ -7498,12 +6400,6 @@ entities: pos: 2.5,12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 848 type: Wire components: @@ -7511,12 +6407,6 @@ entities: pos: 2.5,13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 849 type: Wire components: @@ -7524,12 +6414,6 @@ entities: pos: 3.5,13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 850 type: Wire components: @@ -7537,12 +6421,6 @@ entities: pos: 4.5,13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 851 type: Wire components: @@ -7550,12 +6428,6 @@ entities: pos: 6.5,27.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 852 type: Wire components: @@ -7563,12 +6435,6 @@ entities: pos: 6.5,28.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 853 type: Wire components: @@ -7576,12 +6442,6 @@ entities: pos: 5.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 854 type: Wire components: @@ -7589,12 +6449,6 @@ entities: pos: 5.5,15.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 855 type: Wire components: @@ -7602,12 +6456,6 @@ entities: pos: 5.5,16.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 856 type: Wire components: @@ -7615,12 +6463,6 @@ entities: pos: 6.5,16.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 857 type: Wire components: @@ -7628,12 +6470,6 @@ entities: pos: 6.5,17.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 858 type: Wire components: @@ -7641,12 +6477,6 @@ entities: pos: 6.5,18.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 859 type: Wire components: @@ -7654,12 +6484,6 @@ entities: pos: 6.5,19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 860 type: Wire components: @@ -7667,12 +6491,6 @@ entities: pos: 6.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 861 type: Wire components: @@ -7680,12 +6498,6 @@ entities: pos: 6.5,21.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 862 type: Wire components: @@ -7693,12 +6505,6 @@ entities: pos: 6.5,22.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 863 type: Wire components: @@ -7706,12 +6512,6 @@ entities: pos: 6.5,23.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 864 type: Wire components: @@ -7719,12 +6519,6 @@ entities: pos: 6.5,24.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 865 type: Wire components: @@ -7732,12 +6526,6 @@ entities: pos: 6.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 866 type: Wire components: @@ -7745,12 +6533,6 @@ entities: pos: 6.5,26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 867 type: Wire components: @@ -7758,12 +6540,6 @@ entities: pos: 5.5,13.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 868 type: AirlockScienceGlass components: @@ -7880,12 +6656,6 @@ entities: pos: 3.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 882 type: Wire components: @@ -7893,12 +6663,6 @@ entities: pos: 2.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 883 type: Poweredlight components: @@ -8124,12 +6888,6 @@ entities: pos: 2.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 910 type: Wire components: @@ -8137,12 +6895,6 @@ entities: pos: 1.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 911 type: APC components: @@ -8150,12 +6902,6 @@ entities: pos: 1.5,14.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 912 type: APC components: @@ -8163,12 +6909,6 @@ entities: pos: 14.5,19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 913 type: APC components: @@ -8176,12 +6916,6 @@ entities: pos: 18.5,26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 914 type: Wire components: @@ -8189,12 +6923,6 @@ entities: pos: 7.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 915 type: Wire components: @@ -8202,12 +6930,6 @@ entities: pos: 8.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 916 type: Wire components: @@ -8215,12 +6937,6 @@ entities: pos: 9.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 917 type: Wire components: @@ -8228,12 +6944,6 @@ entities: pos: 10.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 918 type: Wire components: @@ -8241,12 +6951,6 @@ entities: pos: 11.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 919 type: Wire components: @@ -8254,12 +6958,6 @@ entities: pos: 12.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 920 type: Wire components: @@ -8267,12 +6965,6 @@ entities: pos: 13.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 921 type: Wire components: @@ -8280,12 +6972,6 @@ entities: pos: 14.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 922 type: Wire components: @@ -8293,12 +6979,6 @@ entities: pos: 14.5,19.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 923 type: Wire components: @@ -8306,12 +6986,6 @@ entities: pos: 15.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 924 type: Wire components: @@ -8319,12 +6993,6 @@ entities: pos: 16.5,20.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 925 type: Wire components: @@ -8332,12 +7000,6 @@ entities: pos: 16.5,21.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 926 type: Wire components: @@ -8345,12 +7007,6 @@ entities: pos: 16.5,22.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 927 type: Wire components: @@ -8358,12 +7014,6 @@ entities: pos: 16.5,23.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 928 type: Wire components: @@ -8371,12 +7021,6 @@ entities: pos: 16.5,24.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 929 type: Wire components: @@ -8384,12 +7028,6 @@ entities: pos: 16.5,25.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 930 type: Wire components: @@ -8397,12 +7035,6 @@ entities: pos: 16.5,26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 931 type: Wire components: @@ -8410,12 +7042,6 @@ entities: pos: 16.5,27.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 932 type: Wire components: @@ -8423,12 +7049,6 @@ entities: pos: 17.5,26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 933 type: Wire components: @@ -8436,12 +7056,6 @@ entities: pos: 18.5,26.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 934 type: Generator components: @@ -8449,10 +7063,6 @@ entities: pos: 3.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - type: NodeContainer - uid: 935 type: Generator components: @@ -8460,10 +7070,6 @@ entities: pos: 2.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - type: NodeContainer - uid: 936 type: Generator components: @@ -8471,10 +7077,6 @@ entities: pos: 1.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - type: NodeContainer - uid: 937 type: Generator components: @@ -8482,10 +7084,6 @@ entities: pos: 0.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - type: NodeContainer - uid: 938 type: Wire components: @@ -8493,12 +7091,6 @@ entities: pos: 0.5,-12.5 rot: -1.5707963267948966 rad type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 939 type: Poweredlight components: @@ -8524,24 +7116,12 @@ entities: - parent: 0 pos: 7.5,18.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 942 type: Wire components: - parent: 0 pos: 7.5,18.5 type: Transform - - nodeTypes: - HVPower: - - AdjacentNode - Apc: - - AdjacentNode - type: NodeContainer - uid: 943 type: GlassStack components: @@ -8605,12 +7185,12 @@ entities: pos: 12.5,21.5 rot: -1.5707963267948966 rad type: Transform + - IsPlaceable: False + type: PlaceableSurface - containers: EntityStorageComponent: type: Robust.Server.GameObjects.Components.Container.Container type: ContainerContainer - - IsPlaceable: False - type: PlaceableSurface - uid: 953 type: solid_wall components: @@ -8729,4 +7309,36 @@ entities: pos: 4.5,-2.5 rot: -1.5707963267948966 rad type: Transform +- uid: 969 + type: PowerCellSmallStandard + components: + - parent: 1 + type: Transform + - startingCharge: 1000 + type: PowerCell +- uid: 970 + type: PowerCellSmallStandard + components: + - parent: 2 + type: Transform + - startingCharge: 1000 + type: PowerCell +- uid: 971 + type: MagazinePistolSmg + components: + - parent: 269 + type: Transform + - containers: + RangedMagazine-magazine: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer +- uid: 972 + type: MagazinePistolSmg + components: + - parent: 270 + type: Transform + - containers: + RangedMagazine-magazine: + type: Robust.Server.GameObjects.Components.Container.Container + type: ContainerContainer ... diff --git a/Resources/Prototypes/Entities/Constructible/Ground/wires.yml b/Resources/Prototypes/Entities/Constructible/Ground/wires.yml index 1e6dec15e0..94dab9b10d 100644 --- a/Resources/Prototypes/Entities/Constructible/Ground/wires.yml +++ b/Resources/Prototypes/Entities/Constructible/Ground/wires.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity abstract: true id: WireBase placement: @@ -33,7 +33,9 @@ base: hvcable_ key: hv_cables - type: NodeContainer - nodeTypes: { HVPower : ["AdjacentNode"] } + nodes: + - !type:AdjacentNode + nodeGroupID: HVPower - type: Wire wireDroppedOnCutPrototype: HVWireStack1 wireType: HighVoltage @@ -53,7 +55,9 @@ base: mvcable_ key: mv_cables - type: NodeContainer - nodeTypes: { MVPower : ["AdjacentNode"] } + nodes: + - !type:AdjacentNode + nodeGroupID: MVPower - type: Wire wireDroppedOnCutPrototype: MVWireStack1 wireType: MediumVoltage @@ -73,7 +77,9 @@ base: lvcable_ key: lv_cables - type: NodeContainer - nodeTypes: { Apc : ["AdjacentNode"] } + nodes: + - !type:AdjacentNode + nodeGroupID: Apc - type: PowerProvider voltage: Apc - type: Wire @@ -90,14 +96,8 @@ parent: ApcExtensionCable components: - type: NodeContainer - nodeTypes: { HVPower : ["AdjacentNode"], Apc : ["AdjacentNode"] } - -- type: entity - id: Generator - name: Depriciated Generator - parent: DebugGenerator - components: - - type: PowerSupplier - voltage: High - supplyRate: 100000 - + nodes: + - !type:AdjacentNode + nodeGroupID: HVPower + - !type:AdjacentNode + nodeGroupID: Apc diff --git a/Resources/Prototypes/Entities/Constructible/Power/power.yml b/Resources/Prototypes/Entities/Constructible/Power/power.yml index fa5ad60928..4368ce971c 100644 --- a/Resources/Prototypes/Entities/Constructible/Power/power.yml +++ b/Resources/Prototypes/Entities/Constructible/Power/power.yml @@ -18,7 +18,9 @@ - type: Icon texture: Constructible/Power/generator.png - type: NodeContainer - nodeTypes: { HVPower : ["AdjacentNode"] } + nodes: + - !type:AdjacentNode + nodeGroupID: HVPower - type: PowerSupplier supplyRate: 3000 - type: Physics @@ -45,7 +47,9 @@ - type: Icon texture: Constructible/Power/wiredmachine.png - type: NodeContainer - nodeTypes: { HVPower : ["AdjacentNode"] } + nodes: + - !type:AdjacentNode + nodeGroupID: HVPower - type: PowerConsumer drawRate: 50 - type: Damageable @@ -76,7 +80,9 @@ texture: Constructible/Power/provider.png - type: Battery - type: NodeContainer - nodeTypes: { HVPower : ["AdjacentNode"] } + nodes: + - !type:AdjacentNode + nodeGroupID: HVPower - type: PowerConsumer - type: BatteryStorage - type: Physics @@ -104,7 +110,9 @@ texture: Constructible/Power/provider.png - type: Battery - type: NodeContainer - nodeTypes: { HVPower : ["AdjacentNode"] } + nodes: + - !type:AdjacentNode + nodeGroupID: HVPower - type: PowerSupplier - type: BatteryDischarger - type: Physics @@ -144,7 +152,9 @@ maxCharge: 1000 startingCharge: 1000 - type: NodeContainer - nodeTypes: { HVPower : ["AdjacentNode"] } + nodes: + - !type:AdjacentNode + nodeGroupID: HVPower - type: PowerConsumer - type: BatteryStorage activeDrawRate: 1500 @@ -179,7 +189,11 @@ maxCharge: 1000 startingCharge: 1000 - type: NodeContainer - nodeTypes: { HVPower : ["AdjacentNode"], MVPower : ["AdjacentNode"] } + nodes: + - !type:AdjacentNode + nodeGroupID: HVPower + - !type:AdjacentNode + nodeGroupID: MVPower - type: PowerConsumer - type: BatteryStorage activeDrawRate: 1500 @@ -220,7 +234,11 @@ maxCharge: 10000 startingCharge: 10000 - type: NodeContainer - nodeTypes: { MVPower : ["AdjacentNode"], Apc : ["AdjacentNode"] } + nodes: + - !type:AdjacentNode + nodeGroupID: MVPower + - !type:AdjacentNode + nodeGroupID: Apc - type: PowerConsumer voltage: Medium - type: BatteryStorage @@ -278,7 +296,9 @@ sprite: Constructible/Power/solar_panel.rsi state: normal - type: NodeContainer - nodeTypes: { HVPower : ["AdjacentNode"] } + nodes: + - !type:AdjacentNode + nodeGroupID: HVPower - type: PowerSupplier - type: SolarPanel supply: 1500 @@ -290,13 +310,26 @@ #Depriciated, to be removed from maps +- type: entity + id: Generator + name: Depriciated Generator + parent: DebugGenerator + components: + - type: PowerSupplier + voltage: High + supplyRate: 100000 + - type: entity id: APC name: Depriciated Apc parent: DebugApc components: - type: NodeContainer - nodeTypes: { HVPower : ["AdjacentNode"], Apc : ["AdjacentNode"] } + nodes: + - !type:AdjacentNode + nodeGroupID: HVPower + - !type:AdjacentNode + nodeGroupID: Apc - type: PowerConsumer voltage: High - type: BatteryStorage